@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.1rem;
    margin: 0;
    letter-spacing: -0.8px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    text-transform: none;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    position: relative;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-link:hover h2 {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.2));
    transition: transform 0.3s ease;
}

.logo-link:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-logo {
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover::after {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B35;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-image {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    margin: 0.2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #FF6B35;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-rating {
    margin-top: 2rem;
}

.stars {
    margin-bottom: 0.5rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.original-price,
.tastyeats-price {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
}

.original-price {
    background: #f8f9fa;
    border: 2px dashed #ddd;
}

.tastyeats-price {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    position: relative;
}

.tastyeats-price::before {
    content: "SAVE 50%";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.savings {
    margin-top: 1rem;
}

.savings-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

/* Payment Methods Section */
.payment-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.payment-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.payment-item p {
    color: #666;
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step p {
    color: #666;
}

/* Secret Section */
.secret {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    text-align: center;
}

.secret .section-title {
    color: white;
}

.secret-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-benefit i {
    color: white;
}

.trusted-by {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-right {
    display: flex;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.community-cta {
    color: #FF6B35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #F7931E;
}

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

.social-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.social-button:hover {
    transform: scale(1.1);
}

.social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-button.telegram {
    background: #0088cc;
    color: white;
}

.social-button.discord {
    background: #7289da;
    color: white;
}

.contact-method {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FF6B35;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF6B35;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-btn {
    background: #FF6B35;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.footer-btn:hover {
    background: #e55a2b;
}

/* Order Page Specific Styles */
.order-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.order-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.order-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.order-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.order-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.order-stats .stat i {
    font-size: 1.2rem;
}

/* Live Chat Section */
.live-chat-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.chat-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.chat-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.chat-info > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.chat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

.chat-instructions {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chat-instructions h3 {
    margin-bottom: 1rem;
    color: #333;
}

.chat-instructions ol {
    padding-left: 1.5rem;
}

.chat-instructions li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Chat Widget Preview */
.chat-widget-container {
    text-align: center;
}

.chat-widget-preview {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
}

.chat-header {
    background: #FF6B35;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
}

.status.online {
    color: #FF6B35;
    font-size: 0.8rem;
}

.chat-messages {
    padding: 1rem;
    height: 300px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message.received {
    margin-right: auto;
}

.message.sent {
    margin-left: auto;
}

.message p {
    padding: 0.8rem 1rem;
    border-radius: 15px;
    margin: 0;
}

.message.received p {
    background: white;
    color: #333;
}

.message.sent p {
    background: #FF6B35;
    color: white;
}

.chat-input {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    background: white;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.chat-input button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-input button:hover {
    background: #e55a2b;
}

.chat-note {
    color: #666;
    font-size: 0.9rem;
}

/* Order Process Section */
.order-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.process-step p {
    color: #666;
}

/* Popular Restaurants */
.popular-restaurants {
    padding: 80px 0;
    background: #f8f9fa;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.restaurant-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.restaurant-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.restaurant-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.restaurant-card p {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 0.9rem;
}

.restaurants-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-style: italic;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

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

.chat-cta {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* How To Order Page Styles */
.how-to-guide {
    padding: 80px 0;
    background: white;
}

.guide-steps {
    max-width: 800px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-5px);
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.step-content li {
    color: #666;
    margin-bottom: 0.5rem;
}

.step-tips {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
}

.step-tips h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.step-tips li {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Example Order Section */
.example-order {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.example-cart,
.example-tastyeats {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.example-cart h3,
.example-tastyeats h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item.total {
    border-top: 2px solid #333;
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.cart-item.savings {
    color: #FF6B35;
}

.savings-arrow {
    font-size: 2rem;
    color: #FF6B35;
    text-align: center;
}

.savings-highlight {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: #FF6B35;
    color: white;
    border-radius: 10px;
}

.savings-text {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info-centered > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e55a2b;
}

/* Contact Form */
.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form > p {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.submit-btn {
    width: 100%;
    background: #FF6B35;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #e55a2b;
}

/* Business Hours */
.business-hours {
    padding: 80px 0;
    background: white;
}

.hours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hours-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.hours-icon {
    width: 80px;
    height: 80px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.hours-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.hours-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.hours-description {
    color: #666;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo h2 {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
        font-weight: 800;
    }

    .nav-logo-img {
        width: 38px;
        height: 38px;
    }

    .logo-link {
        gap: 0.6rem;
        padding: 0.3rem;
    }

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

    .price-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chat-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .order-stats {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .restaurants-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .guide-step {
        flex-direction: column;
        text-align: center;
    }

    .example-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .savings-arrow {
        transform: rotate(90deg);
    }

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

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .hours-container {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        margin-top: 1rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem 1rem;
    }

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