:root {
    --primary-color: #760504;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Breaking News Banner */
.breaking-news-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breaking-news-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.breaking-news-label {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    animation: blink 2s infinite;
}

.breaking-news-label i {
    font-size: 1rem;
    animation: pulse-icon 1.5s infinite;
}

.breaking-news-text {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.breaking-news-marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll-text 20s linear infinite;
    font-size: 0.95rem;
}

.marquee-content {
    display: inline-block;
    padding-right: 50px;
    white-space: nowrap;
}

.breaking-news-marquee strong {
    color: #ffd700;
    font-weight: 700;
}

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

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

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

/* Responsive Breaking News */
@media (max-width: 768px) {
    .breaking-news-banner {
        padding: 10px 0;
    }
    
    .breaking-news-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .breaking-news-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .breaking-news-marquee {
        font-size: 0.8rem;
        animation-duration: 18s;
    }
    
    .marquee-content {
        padding-right: 30px;
    }
    
    .breaking-news-text {
        width: 100%;
    }
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #5a0403;
    border-color: #5a0403;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(118, 5, 4, 0.3);
}

.btn-outline-primary-custom {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* New Hero Section */
.hero-section-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0605 100%);
    color: var(--white);
    padding: 30px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Top Badge */
.btn-hero-top-badge {
    display: inline-block;
    background: rgba(118, 5, 4, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.btn-hero-top-badge:hover {
    background: rgba(90, 4, 3, 0.95);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* Device Demo */
.hero-device-demo {
    margin: 30px 0;
}

.device-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

/* Tablet Device */
.tablet-device {
    position: relative;
    width: 100%;
    max-width: 700px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.tablet-screen {
    background: white;
    border-radius: 12px;
    padding: 0;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablet-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.menu-demo-header {
    text-align: center;
    margin-bottom: 20px;
}

.menu-demo-header h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.menu-demo-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.menu-demo-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.menu-demo-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-demo-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.menu-demo-tabs .tab {
    padding: 8px 16px;
    color: #666;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -12px;
}

.menu-demo-tabs .tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.menu-demo-content h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.menu-items-demo {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.menu-item-demo {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.menu-item-demo img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.btn-reservation {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reservation:hover {
    background: #5a0403;
}

/* Phone Device */
.phone-device {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.phone-screen {
    background: white;
    border-radius: 18px;
    padding: 0;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.admin-demo h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.admin-demo h6 {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.admin-categories {
    margin-bottom: 20px;
}

.category-item {
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
}

.admin-product h6 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 10px;
}

.product-count {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-add-product {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}

.product-demo {
    margin-top: 15px;
}

.product-demo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-info h6 {
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-info p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Pricing Section */
.hero-pricing-section {
    margin-top: 40px;
}

.free-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.free-badge-content {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 10px;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(118, 5, 4, 0.1);
}

.free-badge-content strong {
    color: #760504;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.free-badge-content span {
    color: #760504;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-pricing-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    line-height: 1.35;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.highlight-price {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.hero-pricing-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.hero-features-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-list-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-list-item i {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-special {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0605 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(118, 5, 4, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta-special:hover {
    background: linear-gradient(135deg, #8a0605 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 5, 4, 0.4);
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(118, 5, 4, 0.1);
}

.btn-cta-primary:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(118, 5, 4, 0.15);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-cta-whatsapp {
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(118, 5, 4, 0.1);
}

.btn-cta-whatsapp:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-whatsapp i {
    color: #25D366;
}

/* Hızlı Tur Modal */
.tour-step-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.tour-modal-content {
    max-width: 600px;
    margin: 0 auto;
}

.tour-icon {
    animation: float 3s ease-in-out infinite;
}

.tour-features-box {
    text-align: left;
}

.tour-cta-box {
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .phone-device {
        right: -30px;
        width: 240px;
    }
}

@media (max-width: 991px) {
    .phone-device {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: -80px;
        margin-left: auto;
        margin-right: auto;
        width: 220px;
    }
    
    .phone-screen {
        min-height: 380px;
    }
    
    .phone-screen-image {
        object-fit: cover;
        object-position: center top;
    }
    
    .device-container {
        flex-direction: column;
        min-height: 400px;
    }
    
    .tablet-device {
        margin-bottom: 0;
    }
    
    .hero-pricing-title {
        font-size: 1.6rem;
    }
    
    .hero-pricing-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-features-list {
        gap: 15px;
    }
    
    .feature-list-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        padding: 30px 0 50px;
    }
    
    .hero-device-demo {
        margin: 20px 0;
    }
    
    .device-container {
        min-height: 350px;
    }
    
    .tablet-device {
        max-width: 100%;
        padding: 8px;
    }
    
    .tablet-screen {
        min-height: 250px;
    }
    
    .tablet-screen-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .phone-device {
        width: 180px;
        margin-top: -50px;
        padding: 6px;
    }
    
    .phone-screen {
        min-height: 300px;
    }
    
    .phone-screen-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .hero-pricing-section {
        margin-top: 30px;
    }
    
    .hero-pricing-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .hero-pricing-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-features-list {
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .feature-list-item {
        font-size: 0.8rem;
    }
    
    .hero-cta-buttons {
        gap: 8px;
        flex-direction: column;
    }
    
    .btn-cta-special,
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-whatsapp {
        padding: 8px 18px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
        border-radius: 8px;
    }
    
    .btn-cta-special i,
    .btn-cta-primary i,
    .btn-cta-secondary i,
    .btn-cta-whatsapp i {
        font-size: 0.85rem;
    }
    
    .hero-features-list {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .device-container {
        min-height: 350px;
    }
    
    .tablet-device {
        padding: 8px;
    }
    
    .tablet-screen {
        min-height: 250px;
    }
    
    .phone-device {
        width: 180px;
        margin-top: -50px;
        padding: 6px;
    }
    
    .phone-screen {
        min-height: 300px;
        border-radius: 15px;
    }
    
    .phone-screen-image {
        border-radius: 15px;
    }
    
    .hero-cta-buttons {
        gap: 6px;
    }
    
    .btn-cta-special,
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-whatsapp {
        padding: 6px 16px;
        font-size: 0.75rem;
        border-radius: 7px;
        font-weight: 400;
    }
    
    .btn-cta-special i,
    .btn-cta-primary i,
    .btn-cta-secondary i,
    .btn-cta-whatsapp i {
        font-size: 0.8rem;
    }
    
    .hero-cta-buttons small {
        font-size: 0.65rem !important;
        margin-top: 8px !important;
    }
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0605 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(90, 4, 3, 0.1) 10px,
            rgba(90, 4, 3, 0.1) 20px
        );
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

/* Hero Title */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Value Proposition */
.lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    max-width: 600px;
}

.lead-text strong {
    color: #ffd700;
    font-weight: 600;
}

/* Simple Value Cards */
.value-cards-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .value-cards-simple {
        justify-content: flex-start;
    }
}

.value-item-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.value-number-simple {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.value-text-simple {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    white-space: nowrap;
}

.value-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: 300;
}

/* Hero Features */
.hero-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #ffd700;
}

.feature-content h6 {
    color: white;
    font-size: 1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

/* Hero CTA Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #760504;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
    color: #760504;
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 2rem;
}

.trust-item-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 400;
}

.trust-item-simple i {
    color: #4ade80;
    font-size: 0.9rem;
}

/* Hero Logo Container */
.hero-logo-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.logo-display {
    position: relative;
    z-index: 3;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffd700;
    backdrop-filter: blur(10px);
}

.float-1 {
    top: 10%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation: float 5s ease-in-out infinite 1s;
}

.float-3 {
    bottom: 15%;
    left: 20%;
    animation: float 6s ease-in-out infinite 2s;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* 1K Resolution Optimization (1920x1080) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-section-new {
        padding: 25px 0 40px;
    }
    
    .device-container {
        min-height: 420px;
    }
    
    .hero-device-demo {
        margin: 25px 0;
    }
    
    .hero-pricing-section {
        margin-top: 25px;
    }
    
    .hero-pricing-title {
        font-size: 2rem;
    }
    
    .hero-pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-features-list {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .hero-cta-buttons {
        gap: 10px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .hero-logo-container {
        min-height: 400px;
        margin-top: 3rem;
    }
    
    .logo-panel {
        padding: 40px 30px;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .float-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .value-cards-simple {
        gap: 1rem;
    }
    
    .value-number-simple {
        font-size: 1.75rem;
    }
    
    .value-text-simple {
        font-size: 0.8rem;
    }
    
    .value-separator {
        font-size: 1.2rem;
    }
    
    .trust-item-simple {
        font-size: 0.8rem;
    }
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.card-custom {
    border: none;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.theme-card {
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.theme-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.price-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(118, 5, 4, 0.2);
}

.price-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.promo-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Yönetim Paneli - Yeni Tasarım */
.admin-dashboard-demo {
    transition: all 0.3s ease;
}

.admin-dashboard-demo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
}

.admin-image-zoom {
    transition: all 0.3s ease;
}

.admin-image-zoom:hover {
    opacity: 0.9;
}

/* Admin Image Modal */
#adminImageModal .modal-dialog {
    max-width: 95%;
}

.admin-image-modal-content {
    background: rgba(0, 0, 0, 0.9) !important;
    border: none !important;
    backdrop-filter: blur(10px);
}

.admin-modal-image {
    max-height: 90vh;
    width: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

#adminImageModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
}

.admin-feature-box {
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(118, 5, 4, 0.3);
}

.admin-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(118, 5, 4, 0.4);
}

.admin-carousel-control-small {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.admin-carousel-control-small:hover {
    background-color: #8a0605;
    transform: scale(1.1);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(118, 5, 4, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .admin-dashboard-demo {
        padding: 20px !important;
    }
    
    .admin-dashboard-demo .position-absolute {
        top: 15px !important;
        right: 15px !important;
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .admin-feature-box {
        padding: 30px !important;
    }
    
    .admin-feature-box h3 {
        font-size: 1.5rem !important;
    }
}

/* Fiyatını Ödediğimde Neye Sahip Olacağım Section */
.feature-benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(118, 5, 4, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0605 100%);
    transform: scale(1.1);
}

.feature-benefit-card:hover .benefit-icon i {
    color: white;
    transform: rotate(5deg);
}

.benefits-extra {
    box-shadow: 0 8px 30px rgba(118, 5, 4, 0.2);
    transition: all 0.3s ease;
}

.benefits-extra:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(118, 5, 4, 0.3);
}

.benefits-extra i {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.benefits-extra:hover i {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .feature-benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
}

/* FAQ Section Styles */
.faq-button {
    background-color: #ffffff;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    background-color: #fff5f5;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(118, 5, 4, 0.1);
}

.faq-button:hover {
    background-color: #fff5f5;
    color: var(--primary-color);
}

.faq-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(118, 5, 4, 0.25);
    border-color: var(--primary-color);
}

.faq-body {
    padding: 25px;
    background-color: #ffffff;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .faq-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

/* Footer Modern Styles */
.footer-modern {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(118, 5, 4, 0.1);
    margin-top: 80px;
    position: relative !important;
    z-index: 1 !important;
    clear: both !important;
    width: 100%;
}

.footer-widget {
    height: 100%;
    padding: 0 15px;
}

.footer-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-text {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

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

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(118, 5, 4, 0.3);
    border-color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(118, 5, 4, 0.2), transparent);
    margin: 40px 0 20px;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
    margin-top: 20px;
}

footer {
    margin-top: auto;
}

footer a {
    color: #666;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.breadcrumb-item a {
    color: #760504;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

.pagination .page-link {
    color: #760504;
}

.pagination .page-item.active .page-link {
    background-color: #760504;
    border-color: #760504;
}

.pagination .page-link:hover {
    color: #5a0403;
}

.accordion-button:not(.collapsed) {
    background-color: #fff5f5;
    color: #760504;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(118, 5, 4, 0.25);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .theme-card {
        height: 250px;
    }
    
    .footer-modern {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
        padding: 0;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Tema 3 & 5 Modern Styles - Override all other styles */
.theme-3-modern {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.theme-3-modern:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15) !important;
}

.theme-3-modern .theme-card,
.theme-3-modern > div:first-child {
    height: 300px !important;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    border-radius: 0 !important;
}

.theme-3-modern img {
    display: none !important;
}

.theme-5-modern {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.theme-5-modern:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15) !important;
}

.theme-5-modern .theme-card,
.theme-5-modern .col-md-4:first-child > div {
    min-height: 400px !important;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #cd853f 100%) !important;
    border-radius: 0 !important;
}

.theme-5-modern img {
    display: none !important;
}

/* Modern Theme Cards */
.theme-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.theme-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.theme-card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(118, 5, 4, 0.25);
    z-index: 1;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.theme-demo-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #760504;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    pointer-events: none;
}

.theme-card-modern:hover .theme-demo-btn {
    background: #5a0403;
    transform: scale(1.05);
}

.theme-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    z-index: 1;
}

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

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

.theme-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
}

.theme-card-main-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

a .theme-card-main-title {
    color: #333;
    text-decoration: none;
}

.theme-card-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #760504;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.theme-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.theme-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.theme-rating i {
    margin: 0 1px;
}

.theme-popular {
    color: #760504;
    font-weight: 600;
}

.theme-card-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background: #f5f0e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #760504;
    transition: all 0.3s ease;
}

.theme-card-modern:hover .theme-card-arrow {
    background: #760504;
    color: white;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .theme-card-number {
        font-size: 4rem;
        top: 15px;
        left: 15px;
    }
    
    .theme-demo-btn {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .theme-card-image {
        height: 220px;
    }
    
    .theme-card-main-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
}

/* Process Section - 3 Step Process */
.process-section {
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 30px,
        rgba(118, 5, 4, 0.02) 30px,
        rgba(118, 5, 4, 0.02) 31px
    );
    pointer-events: none;
}

.process-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #760504;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.process-step-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(118, 5, 4, 0.15);
    border-color: rgba(118, 5, 4, 0.2);
}

.process-badge {
    background: linear-gradient(135deg, #760504 0%, #8a0605 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(118, 5, 4, 0.3);
}

.process-step-content {
    flex-grow: 1;
    position: relative;
}

.process-step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #760504 0%, #8a0605 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(118, 5, 4, 0.4);
    z-index: 10;
}

/* Theme Selection Grid */
.process-themes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 30px 0 25px;
}

.process-theme-item {
    background: linear-gradient(135deg, #760504 0%, #8a0605 100%);
    color: white;
    padding: 12px 8px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(118, 5, 4, 0.3);
}

.process-theme-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(118, 5, 4, 0.5);
}

.theme-number {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.9;
}

.theme-name {
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Pricing Grid */
.process-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 30px 0 25px;
}

.process-price-item {
    background: linear-gradient(135deg, #760504 0%, #8a0605 100%);
    color: white;
    padding: 18px 12px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(118, 5, 4, 0.3);
}

.process-price-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(118, 5, 4, 0.4);
}

.process-price-item .price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: white;
}

.process-price-item .price-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Share Options */
.process-share-options {
    margin: 30px 0 25px;
    position: relative;
}

.share-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.share-icon-item {
    background: linear-gradient(135deg, #760504 0%, #8a0605 100%);
    color: white;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(118, 5, 4, 0.3);
    transition: all 0.3s ease;
}

.share-icon-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(118, 5, 4, 0.5);
}

.share-icon-item i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.share-icon-item span {
    font-size: 0.8rem;
    font-weight: 600;
}

.share-connector {
    color: #760504;
    font-size: 1.5rem;
    opacity: 0.6;
}

.share-globe-icon {
    text-align: center;
    margin-top: 15px;
}

.share-globe-icon i {
    font-size: 3rem;
    color: #760504;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

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

.process-step-info {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.process-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #760504;
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.process-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    align-self: center;
}

.process-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #760504 0%, #8a0605 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(118, 5, 4, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.process-cta {
    margin-top: 50px;
}

.btn-process-primary {
    background: linear-gradient(135deg, #760504 0%, #8a0605 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 6px 25px rgba(118, 5, 4, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-process-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(118, 5, 4, 0.5);
    color: white;
}

.btn-process-secondary {
    background: white;
    color: #760504;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #760504;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-process-secondary:hover {
    background: #760504;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(118, 5, 4, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-arrow-wrapper {
        display: none;
    }
    
    .process-themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-main-title {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .process-step-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .process-themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .process-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .share-icon-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .share-connector {
        transform: rotate(90deg);
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .btn-process-primary,
    .btn-process-secondary {
        padding: 12px 30px;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

