/* Chicken Rasoi - Warm Food Theme */
:root {
    --primary-color: #D2691E; /* Saddle Brown */
    --secondary-color: #CD853F; /* Peru */
    --accent-color: #FF6347; /* Tomato */
    --success-color: #32CD32; /* Lime Green */
    --warning-color: #FFD700; /* Gold */
    --error-color: #DC143C; /* Crimson */
    --light-bg: #FFF8DC; /* Cornsilk */
    --lighter-bg: #FFFFFF;
    --card-bg: rgba(255, 248, 220, 0.95);
    --text-color: #8B4513; /* Saddle Brown */
    --text-muted: #A0522D; /* Sienna */
    --text-dim: #D2B48C; /* Tan */
    --border-color: rgba(210, 105, 30, 0.15);
    --shadow-soft: 0 4px 20px rgba(210, 105, 30, 0.08);
    --shadow-glow: 0 0 30px rgba(210, 105, 30, 0.15);
    --gradient-primary: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    --gradient-secondary: linear-gradient(135deg, #CD853F 0%, #FF6347 100%);
    --gradient-accent: linear-gradient(135deg, #FF6347 0%, #D2691E 100%);
    --gradient-bg: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 50%, #DEB887 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 248, 220, 0.98), rgba(245, 222, 179, 0.9));
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Dancing Script', cursive;
    --font-tech: 'Poppins', -apple-system, BlinkMacSystemFont, 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;
}

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

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

.spice-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: spiceFloat 15s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(210, 105, 30, 0.2);
}

.spice-particle:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.spice-particle:nth-child(2) {
    top: 25%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.spice-particle:nth-child(3) {
    bottom: 35%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.spice-particle:nth-child(4) {
    top: 65%;
    right: 25%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.spice-particle:nth-child(5) {
    bottom: 25%;
    right: 45%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.spice-particle:nth-child(6) {
    top: 45%;
    left: 55%;
    animation-delay: 10s;
    animation-duration: 15s;
}

.spice-particle:nth-child(7) {
    bottom: 55%;
    left: 75%;
    animation-delay: 12s;
    animation-duration: 17s;
}

.spice-particle:nth-child(8) {
    top: 75%;
    right: 35%;
    animation-delay: 14s;
    animation-duration: 11s;
}

.spice-particle:nth-child(9) {
    top: 35%;
    left: 25%;
    animation-delay: 16s;
    animation-duration: 19s;
}

.spice-particle:nth-child(10) {
    bottom: 45%;
    right: 55%;
    animation-delay: 18s;
    animation-duration: 13s;
}

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

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

.ingredient.garlic {
    background: radial-gradient(circle, #F5F5DC 30%, #D2691E 70%);
    box-shadow: 0 0 10px rgba(210, 105, 30, 0.3);
}

.ingredient.onion {
    background: radial-gradient(circle, #FFE4E1 30%, #CD853F 70%);
    box-shadow: 0 0 10px rgba(205, 133, 63, 0.3);
}

.ingredient.chili {
    background: radial-gradient(circle, #FF6347 30%, #DC143C 70%);
    box-shadow: 0 0 10px rgba(255, 99, 71, 0.3);
}

.ingredient.ginger {
    background: radial-gradient(circle, #FFE4B5 30%, #DAA520 70%);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.ingredient.turmeric {
    background: radial-gradient(circle, #FFFFE0 30%, #FFD700 70%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.ingredient.coriander {
    background: radial-gradient(circle, #F0FFF0 30%, #32CD32 70%);
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

.ingredient:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.ingredient:nth-child(2) {
    top: 30%;
    right: 30%;
    animation-delay: 3s;
    animation-duration: 25s;
}

.ingredient:nth-child(3) {
    bottom: 40%;
    left: 40%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.ingredient:nth-child(4) {
    top: 60%;
    right: 40%;
    animation-delay: 9s;
    animation-duration: 28s;
}

.ingredient:nth-child(5) {
    bottom: 30%;
    right: 50%;
    animation-delay: 12s;
    animation-duration: 24s;
}

.ingredient:nth-child(6) {
    top: 50%;
    left: 60%;
    animation-delay: 15s;
    animation-duration: 26s;
}

/* Warm Overlay */
.warm-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(210, 105, 30, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(205, 133, 63, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 99, 71, 0.02) 0%, transparent 70%);
    animation: warmPulse 18s ease-in-out infinite;
}

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

@keyframes ingredientDrift {
    0% {
        transform: translateY(0) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        transform: translateY(-40px) translateX(20px) scale(1) rotate(72deg);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-80px) translateX(-15px) scale(1.2) rotate(144deg);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-40px) translateX(10px) scale(0.8) rotate(216deg);
        opacity: 0.6;
    }
    80% {
        transform: translateY(-20px) translateX(-8px) scale(0.6) rotate(288deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0) translateX(0) scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes warmPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

/* 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: 80px;
    height: 80px;
    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;
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    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.5s ease-out;
    text-shadow: 0 4px 8px rgba(210, 105, 30, 0.2);
}

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

.hero-description {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-dim);
    font-weight: 400;
    margin-bottom: 2rem;
    animation: descriptionFadeIn 1.5s ease-out 0.6s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Contact Cards */
.contact-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    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(210, 105, 30, 0.05), transparent);
    transition: left 0.6s;
}

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

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(210, 105, 30, 0.25);
}

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

.contact-card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

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

.card-content h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 500;
}

.card-content small {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-style: italic;
}

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

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 105, 30, 0.05), transparent);
    transition: left 0.6s;
}

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

.contact-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

/* 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;
}

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

.info-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    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(210, 105, 30, 0.05), transparent);
    transition: left 0.6s;
}

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

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(210, 105, 30, 0.25);
}

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

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

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

.info-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    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.5s ease-out;
}

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

.header-icon {
    width: 80px;
    height: 80px;
    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;
}

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

.contact-form-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    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(210, 105, 30, 0.05), transparent);
    transition: left 0.6s;
}

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

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(210, 105, 30, 0.25);
}

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

.form-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    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: 1.8rem;
}

@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.2rem;
    font-weight: 600;
    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;
}

/* Enhanced 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: 500;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-primary);
}

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

.contact-form .form-control {
    background: rgba(255, 248, 220, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    font-weight: 400;
    font-family: var(--font-primary);
    width: 100%;
}

.contact-form .form-control:focus {
    background: rgba(255, 248, 220, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
    outline: none;
    transform: translateY(-2px);
}

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

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    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.2rem 2rem;
    font-weight: 600;
    font-size: 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;
}

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

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

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

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

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

/* New Message Button */
.btn-new-message {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    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.2), transparent);
    transition: left 0.6s;
}

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

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

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

.success-message {
    background: rgba(50, 205, 50, 0.05);
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(50, 205, 50, 0.1);
}

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

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

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

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

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

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

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

    .hero-description {
        font-size: 1rem;
    }

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

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

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

    .contact-container {
        padding: 2rem;
    }

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

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

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

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

    .hero-description {
        font-size: 0.9rem;
    }

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

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

    .contact-container {
        padding: 1.5rem;
    }

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

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

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

    .contact-form .form-control {
        padding: 1rem 1.2rem;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
    }

    .success-message {
        padding: 2rem;
    }

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

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

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