/* Chicken Rings - Modern Fast Food Theme */
:root {
    --primary-color: #FF6B35; /* Vibrant Orange */
    --secondary-color: #FFB627; /* Golden Yellow */
    --accent-color: #E84855; /* Coral Red */
    --success-color: #06D6A0; /* Mint Green */
    --light-bg: #FFFBF7; /* Cream White */
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-color: #2D3436; /* Dark Gray */
    --text-muted: #636E72; /* Medium Gray */
    --text-light: #B2BEC3; /* Light Gray */
    --border-color: rgba(255, 107, 53, 0.2);
    --shadow-soft: 0 4px 30px rgba(255, 107, 53, 0.1);
    --shadow-glow: 0 8px 40px rgba(255, 107, 53, 0.25);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFB627 100%);
    --gradient-secondary: linear-gradient(135deg, #E84855 0%, #FF6B35 100%);
    --gradient-accent: linear-gradient(135deg, #FFB627 0%, #06D6A0 100%);
    --gradient-bg: linear-gradient(135deg, #FFFBF7 0%, #FFF0E6 50%, #FFE5D3 100%);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gradient-bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--gradient-bg);
}

/* Modern Food Pattern */
.food-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.spice-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: spiceFloat 12s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.spice-particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 10s; }
.spice-particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; animation-duration: 12s; }
.spice-particle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 2s; animation-duration: 11s; }
.spice-particle:nth-child(4) { top: 60%; right: 20%; animation-delay: 3s; animation-duration: 13s; }
.spice-particle:nth-child(5) { bottom: 20%; right: 40%; animation-delay: 4s; animation-duration: 10s; }
.spice-particle:nth-child(6) { top: 40%; left: 50%; animation-delay: 5s; animation-duration: 12s; }
.spice-particle:nth-child(7) { bottom: 50%; left: 70%; animation-delay: 6s; animation-duration: 11s; }
.spice-particle:nth-child(8) { top: 70%; right: 30%; animation-delay: 7s; animation-duration: 13s; }
.spice-particle:nth-child(9) { top: 30%; left: 20%; animation-delay: 8s; animation-duration: 10s; }
.spice-particle:nth-child(10) { bottom: 40%; right: 50%; animation-delay: 9s; animation-duration: 12s; }

/* Floating Ingredients */
.floating-ingredients {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ingredient {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: ingredientDrift 20s linear infinite;
    opacity: 0.5;
}

.ingredient.garlic { background: radial-gradient(circle, #FFFFFF 30%, #FF6B35 70%); box-shadow: 0 0 15px rgba(255, 107, 53, 0.4); }
.ingredient.onion { background: radial-gradient(circle, #FFE5D3 30%, #FFB627 70%); box-shadow: 0 0 15px rgba(255, 182, 39, 0.4); }
.ingredient.chili { background: radial-gradient(circle, #FF6B35 30%, #E84855 70%); box-shadow: 0 0 15px rgba(232, 72, 85, 0.4); }
.ingredient.ginger { background: radial-gradient(circle, #FFF5E6 30%, #FFB627 70%); box-shadow: 0 0 15px rgba(255, 182, 39, 0.4); }
.ingredient.turmeric { background: radial-gradient(circle, #FFFFE0 30%, #FFB627 70%); box-shadow: 0 0 15px rgba(255, 182, 39, 0.4); }
.ingredient.coriander { background: radial-gradient(circle, #E8FFF4 30%, #06D6A0 70%); box-shadow: 0 0 15px rgba(6, 214, 160, 0.4); }

.ingredient:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; animation-duration: 18s; }
.ingredient:nth-child(2) { top: 25%; right: 25%; animation-delay: 2s; animation-duration: 20s; }
.ingredient:nth-child(3) { bottom: 35%; left: 35%; animation-delay: 4s; animation-duration: 19s; }
.ingredient:nth-child(4) { top: 55%; right: 35%; animation-delay: 6s; animation-duration: 21s; }
.ingredient:nth-child(5) { bottom: 25%; right: 45%; animation-delay: 8s; animation-duration: 20s; }
.ingredient:nth-child(6) { top: 45%; left: 55%; animation-delay: 10s; animation-duration: 18s; }

/* Warm Overlay */
.warm-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 182, 39, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(232, 72, 85, 0.03) 0%, transparent 70%);
    animation: warmPulse 15s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes spiceFloat {
    0%, 100% { opacity: 0.05; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.12; transform: scale(1.15) rotate(180deg); }
}

@keyframes ingredientDrift {
    0% { transform: translateY(0) translateX(0) scale(0) rotate(0deg); opacity: 0; }
    20% { transform: translateY(-50px) translateX(25px) scale(1) rotate(72deg); opacity: 0.5; }
    40% { transform: translateY(-100px) translateX(-20px) scale(1.3) rotate(144deg); opacity: 0.7; }
    60% { transform: translateY(-50px) translateX(15px) scale(0.9) rotate(216deg); opacity: 0.5; }
    80% { transform: translateY(-25px) translateX(-10px) scale(0.7) rotate(288deg); opacity: 0.3; }
    100% { transform: translateY(0) translateX(0) scale(0) rotate(360deg); opacity: 0; }
}

@keyframes warmPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

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

.restaurant-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-glow);
    animation: iconFloat 3s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.restaurant-icon i {
    color: white;
    font-size: 2.5rem;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1.2s ease-out;
    text-shadow: 0 6px 12px rgba(255, 107, 53, 0.2);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    animation: subtitleFadeIn 1.2s ease-out 0.3s both;
    text-transform: uppercase;
}

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

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

/* Contact Section */
.contact-section {
    margin-bottom: 4rem;
}

.contact-container {
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
    animation: containerSlideUp 1.2s ease-out 0.6s both;
    position: relative;
}

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

/* Contact Cards */
.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    transition: left 0.8s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.card-icon i {
    color: white;
    font-size: 1.8rem;
}

.card-content p {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1.2s ease-out;
}

.page-subtitle {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    animation: subtitleFadeIn 1.2s ease-out 0.3s both;
}

.header-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-glow);
    animation: iconFloat 3s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.header-icon i {
    color: white;
    font-size: 2.5rem;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    transition: left 0.8s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.info-header i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.info-header h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.info-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    transition: left 0.8s;
}

.contact-form-card:hover::before {
    left: 100%;
}

.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Form Header */
.form-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    animation: iconPulse 3s ease-in-out infinite;
}

.form-icon i {
    color: white;
    font-size: 2rem;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-soft); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-glow); }
}

.form-title h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.form-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-primary);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Form Groups */
.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.contact-form .form-label i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.3rem 1.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-family: var(--font-primary);
    width: 100%;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: var(--text-light);
    font-family: var(--font-primary);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-primary);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.3rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

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

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

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* New Message Button */
.btn-new-message {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.2rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    cursor: pointer;
}

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

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

.btn-new-message:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.success-message {
    background: rgba(6, 214, 160, 0.1);
    border: 2px solid rgba(6, 214, 160, 0.3);
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(6, 214, 160, 0.15);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 5rem;
    color: var(--success-color);
    animation: pulse 2s ease-in-out infinite;
}

.success-message h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: var(--font-primary);
}

.success-message p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    font-family: var(--font-primary);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .restaurant-icon {
        width: 80px;
        height: 80px;
    }

    .restaurant-icon i {
        font-size: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-content p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-icon {
        width: 70px;
        height: 70px;
    }
    
    .form-icon i {
        font-size: 1.8rem;
    }
    
    .form-title h3 {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .info-header i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-container {
        padding: 2rem;
    }

    .page-title {
        font-size: 3.5rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .contact-form-card {
        padding: 2.5rem;
    }
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .restaurant-icon {
        width: 70px;
        height: 70px;
    }

    .restaurant-icon i {
        font-size: 1.8rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .page-title {
        font-size: 2.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .contact-form .form-control {
        padding: 1.1rem 1.5rem;
    }

    .btn-submit {
        padding: 1.1rem 2rem;
    }

    .success-message {
        padding: 2.5rem;
    }

    .success-icon i {
        font-size: 4rem;
    }

    .success-message h4 {
        font-size: 1.5rem;
    }

    .success-message p {
        font-size: 1rem;
    }
}
