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


body{
    font-family: "montserrat", sans-serif;
    /* background: url(/tamas-pap-XLmhRnV8yuc-unsplash.jpg) no-repeat ; */
    background-size: cover;
    /* background-color : rgb(0, 0, 0); */
    background: radial-gradient(circle at center, rgb(192, 0, 0) 0%, rgb(122, 0, 0) 100%);
}

.home_section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
    padding-top: 80px;
}

h1{
    font-size: 70px;
    color: rgb(255, 255, 255);
    letter-spacing: -2px;
    line-height: 0.9;
}

p.description{
    font-size: 30px;
    color: rgb(255, 244, 119);
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: -0.5px;
}

p.Contact{
    margin-top: 4px;
    color: rgb(255, 244, 119);
    font-size: 20px;
    letter-spacing: -0.3px;
}

p.social{
    margin-top: 25px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    letter-spacing: -0.2px;
}

/* Home Page Contact Cards */
.home-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
}

.home-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.home-contact-card .contact-icon {
    font-size: 30px;
    margin-bottom: 15px;
    display: block;
}

.home-contact-card h3 {
    color: rgb(255, 244, 119);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.home-contact-card .location-info {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.home-contact-card .location-info:last-child {
    margin-bottom: 0;
}

.home-contact-card .location-info p {
    margin-bottom: 5px;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.home-contact-card .phone a {
    color: rgb(255, 244, 119);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.home-contact-card .phone a:hover {
    color: rgb(255, 255, 150);
    text-decoration: underline;
}

.home-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.home-social-icons .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.home-social-icons .social-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: white;
}

.home-social-icons .social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 244, 119, 0.3);
}

.social-handle {
    color: rgb(255, 244, 119) !important;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.launch-note {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px;
    font-style: italic;
}

/* Coming Soon Pages Styles */
.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.construction-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.coming-soon-content h2 {
    color: rgb(255, 244, 119);
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.coming-soon-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
}

.preview-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.preview-info h3 {
    color: rgb(255, 244, 119);
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.preview-info ul {
    list-style: none;
    padding: 0;
}

.preview-info li {
    background: rgba(255, 244, 119, 0.1);
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid rgb(255, 244, 119);
}

.contact-info {
    background: rgba(255, 244, 119, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid rgba(255, 244, 119, 0.3);
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info a {
    color: rgb(255, 244, 119);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: rgb(255, 255, 150);
    text-decoration: underline;
}

.page-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.page-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.logo h2 {
    color: rgb(255, 255, 255);
    font-size: 24px;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    color: rgb(255, 244, 119);
    transition: color 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    margin: 2px 0;
    transition: all 0.4s ease;
    border-radius: 2px;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 15px;
}

.hamburger span:nth-child(2) {
    top: 23px;
}

.hamburger span:nth-child(3) {
    top: 31px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 23px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 23px;
}

.nav-menu {
    display: flex;
}

ul{
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

li a{
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

li a:hover {
    color: rgb(255, 244, 119);
}

/* Page sections styling */
.page_section {
    padding: 140px 40px 40px;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    color: rgb(255, 255, 255);
}

.page_section h1 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    text-align: center;
    margin-top: 40px;
}

.page_section h3 {
    color: rgb(255, 244, 119);
    margin-bottom: 15px;
    font-size: 24px;
}

.page_section h4 {
    color: rgb(255, 244, 119);
    margin-bottom: 10px;
    font-size: 20px;
}

.page_section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Content sections */
.about-content, .contact-content, .careers-content, .menu-categories {
    margin-top: 40px;
}

.category, .location, .job {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

section {
    margin-bottom: 40px;
}

/* Active page indicator */
.active {
    color: rgb(255, 244, 119) !important;
    background: rgba(255, 244, 119, 0.1);
    border-radius: 5px;
}

/* Contact Section Styles */
.contact-section {
    background: radial-gradient(circle at center, rgb(192, 0, 0) 0%, rgb(122, 0, 0) 100%);
    padding: 80px 40px;
    min-height: 80vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 48px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 20px;
    color: rgb(255, 244, 119);
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    color: rgb(255, 244, 119);
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-card p {
    color: rgb(255, 255, 255);
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-info {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.location-info:last-child {
    margin-bottom: 0;
}

.phone {
    color: rgb(255, 244, 119) !important;
    font-weight: bold;
    font-size: 16px;
}

.phone a {
    color: rgb(255, 244, 119);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.phone a:hover {
    color: rgb(255, 255, 150);
    text-decoration: underline;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.order-btn {
    background: transparent;
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.order-btn:hover {
    color: rgb(255, 244, 119);
    border-color: rgb(255, 244, 119);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 244, 119, 0.2);
}

/* Phone button styling */
.phone-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.phone-btn {
    font-size: 16px;
    text-align: center;
    min-width: 200px;
}

@media (max-width: 480px) {
    .phone-buttons {
        gap: 8px;
    }
    
    .phone-btn {
        font-size: 15px;
        padding: 10px 20px;
        min-width: auto;
    }
}

.social-links {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.social-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: white;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 244, 119, 0.3);
}

.social-handle {
    color: rgb(255, 244, 119) !important;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.social-link {
    background: rgba(255, 244, 119, 0.1);
    color: rgb(255, 244, 119);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgb(255, 244, 119);
    color: rgb(122, 0, 0);
    transform: scale(1.05);
}

.social-platforms {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 10px;
}

.contact-cta {
    background: rgba(255, 244, 119, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 244, 119, 0.3);
}

.contact-cta h3 {
    color: rgb(255, 244, 119);
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-cta p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, rgb(255, 244, 119), rgb(255, 200, 50));
    color: rgb(122, 0, 0);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 244, 119, 0.4);
    background: linear-gradient(45deg, rgb(255, 255, 150), rgb(255, 220, 80));
}

/* Enhanced Contact Page Styles */
.hours {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    margin-top: 5px;
}

.delivery-info {
    background: rgba(255, 244, 119, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(255, 244, 119, 0.2);
}

.delivery-info p {
    margin-bottom: 5px;
    font-size: 14px;
}

.delivery-info p:first-child {
    color: rgb(255, 244, 119) !important;
    font-weight: bold;
}

.contact-methods {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-methods p {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-methods a {
    color: rgb(255, 244, 119);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-methods a:hover {
    color: rgb(255, 255, 150);
    text-decoration: underline;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section h3 {
    color: rgb(255, 244, 119);
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form-section p {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgb(255, 244, 119);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 244, 119, 0.3);
}

.contact-form select option {
    background: rgb(122, 0, 0);
    color: rgb(255, 255, 255);
}

.submit-btn {
    background: linear-gradient(45deg, rgb(255, 244, 119), rgb(255, 200, 50));
    color: rgb(122, 0, 0);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 244, 119, 0.4);
    background: linear-gradient(45deg, rgb(255, 255, 150), rgb(255, 220, 80));
}

.expansion-info {
    background: rgba(255, 244, 119, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(255, 244, 119, 0.2);
}

.expansion-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.expansion-info p:first-child {
    color: rgb(255, 244, 119) !important;
    font-weight: bold;
}

/* Contact Page Header Adjustment */
.contact-section h1 {
    font-size: 48px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: row;
        gap: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        flex-direction: column;
        background: radial-gradient(circle at center, rgb(192, 0, 0) 0%, rgb(122, 0, 0) 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
        transform-origin: top right;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .nav-menu:not(.active) {
        transition: opacity 0.4s ease 0.2s, visibility 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.1s;
    }
    
    .close-menu {
        position: absolute;
        top: 15px;
        right: 20px;
        cursor: pointer;
        font-size: 50px;
        color: rgb(255, 255, 255);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-weight: 300;
        line-height: 1;
        z-index: 1001;
        opacity: 1;
    }
    
    .close-menu:hover {
        color: rgb(255, 244, 119);
        transform: scale(1.1);
    }
    
    ul {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }
    
    li {
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-menu:not(.active) li:nth-child(1) { transition-delay: 0.3s; }
    .nav-menu:not(.active) li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu:not(.active) li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu:not(.active) li:nth-child(4) { transition-delay: 0.1s; }
    .nav-menu:not(.active) li:nth-child(5) { transition-delay: 0.05s; }
    
    li a {
        padding: 35px 50px;
        font-size: 40px;
        display: block;
        width: auto;
        color: rgb(255, 255, 255);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: rgb(255, 244, 119);
    }
    
    li a.active {
        background: rgba(255, 244, 119, 0.2);
        color: rgb(255, 244, 119);
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .page_section {
        padding: 120px 20px 20px;
    }
    
    .page_section h1 {
        font-size: 36px;
        margin-top: 60px;
    }
    
    .page_section h3 {
        font-size: 20px;
    }
    
    .category, .location, .job {
        padding: 15px;
    }
    
    h1{
        font-size: 50px;
        margin-top: 80px;
    }
    
    p.description {
        font-size: 22px;
        line-height: 1.3;
        margin-top: 15px;
        padding: 0 10px;
    }
    
    p.Contact {
        font-size: 18px;
    }
    
    p.social {
        font-size: 12px;
    }
    
    /* Home Contact Cards Mobile */
    .home_section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 40px;
    }
    
    .home-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 60px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .home-contact-card {
        padding: 25px 20px;
        width: 100%;
    }
    
    .home-contact-card .contact-icon {
        font-size: 25px;
    }
    
    .home-contact-card h3 {
        font-size: 18px;
    }
    
    .home-social-icons .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-handle {
        font-size: 14px;
    }
    
    .launch-note {
        font-size: 11px;
    }
    
    /* Coming Soon Pages Mobile */
    .coming-soon-content {
        padding: 30px 15px;
    }
    
    .construction-icon {
        font-size: 45px;
    }
    
    .coming-soon-content h2 {
        font-size: 28px;
    }
    
    .coming-soon-content p {
        font-size: 16px;
    }
    
    .preview-info {
        padding: 20px;
        text-align: center;
    }
    
    .preview-info h3 {
        font-size: 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    /* Contact Section Mobile Styles */
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-container h2 {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .contact-icon {
        font-size: 32px;
    }
    
    .order-buttons {
        flex-direction: column;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .contact-cta h3 {
        font-size: 24px;
    }
    
    .contact-cta p {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    /* Contact Form Mobile Styles */
    .contact-form-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .contact-form-section h3 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
        padding: 12px;
    }
    
    .submit-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .expansion-info {
        padding: 15px;
    }
    
    .delivery-info,
    .contact-methods {
        padding: 12px;
    }
    
    /* Contact Page Header Mobile */
    .contact-section h1 {
        font-size: 36px;
        margin-top: 120px;
    }
    
    /* Social Icons Mobile */
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-handle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .logo h2 {
        font-size: 18px;
    }
    
    ul {
        gap: 8px;
    }
    
    li a {
        padding: 5px 8px;
        font-size: 13px;
    }
    
    .page_section {
        padding: 140px 15px 15px;
    }
    
    .page_section h1 {
        font-size: 28px;
        margin-top: 80px;
    }
    
    h1 {
        font-size: 40px;
        margin-top: 100px;
    }
    
    p.description {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 15px;
        padding: 0 15px;
    }
    
    p.Contact {
        font-size: 16px;
    }
    
    p.social {
        font-size: 11px;
    }
    
    /* Home Contact Cards Small Mobile */
    .home_section {
        padding-bottom: 30px;
    }
    
    .home-contact-grid {
        gap: 12px;
        margin-top: 50px;
        padding: 0 10px;
    }
    
    .home-contact-card {
        padding: 20px 15px;
    }
    
    .home-contact-card .contact-icon {
        font-size: 22px;
    }
    
    .home-contact-card h3 {
        font-size: 16px;
    }
    
    .home-contact-card .location-info p {
        font-size: 12px;
    }
    
    .home-social-icons .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-handle {
        font-size: 12px;
    }
    
    .launch-note {
        font-size: 10px;
    }
    
    /* Coming Soon Pages Small Mobile */
    .coming-soon-content {
        padding: 20px 10px;
    }
    
    .construction-icon {
        font-size: 35px;
    }
    
    .coming-soon-content h2 {
        font-size: 24px;
    }
    
    .coming-soon-content p {
        font-size: 14px;
    }
    
    .preview-info {
        padding: 15px;
    }
    
    .preview-info h3 {
        font-size: 18px;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .contact-info p {
        font-size: 12px;
    }
    
    .page-footer p {
        font-size: 12px;
    }
    
    /* Contact Section Small Mobile Styles */
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-container h2 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-card h3 {
        font-size: 18px;
    }
    
    .contact-icon {
        font-size: 28px;
    }
    
    .order-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-cta {
        padding: 25px 15px;
    }
    
    .contact-cta h3 {
        font-size: 20px;
    }
    
    .contact-cta p {
        font-size: 14px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Contact Form Small Mobile Styles */
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .contact-form-section h3 {
        font-size: 20px;
    }
    
    .contact-form-section p {
        font-size: 14px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px;
    }
    
    .submit-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .expansion-info {
        padding: 12px;
    }
    
    .expansion-info p {
        font-size: 14px;
    }
    
    .delivery-info,
    .contact-methods {
        padding: 10px;
    }
    
    .delivery-info p,
    .contact-methods p {
        font-size: 12px;
    }
    
    /* Contact Page Header Small Mobile */
    .contact-section h1 {
        font-size: 28px;
        margin-top: 110px;
    }
    
    /* Social Icons Small Mobile */
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-handle {
        font-size: 14px;
    }
}

/* Copyright Footer */
.copyright-footer {
    text-align: center;
    padding: 20px 20px;
    margin-top: 5px;
}

.copyright-footer p {
    color: rgb(255, 255, 255);
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .copyright-footer {
        padding: 8px 15px;
    }
    
    .copyright-footer p {
        font-size: 11px;
    }
}