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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f1602b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-order {
    background: #f1602b;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-order::after {
    display: none;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile menu base styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
        z-index: 999;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu .nav-link {
        color: #fff !important;
        font-size: 1.2rem;
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/background pc .png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 20px;
}

.main-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 6px solid #f1602b;
    animation: logoGlow 2s ease-in-out infinite alternate;
    object-fit: cover;
}

@keyframes logoGlow {
    from {
        box-shadow: 0 0 30px rgba(241, 96, 43, 0.5);
    }
    to {
        box-shadow: 0 0 60px rgba(241, 96, 43, 0.8);
    }
}

@keyframes glow {
    from { box-shadow: 0 0 20px #f1602b; }
    to { box-shadow: 0 0 40px #f1602b, 0 0 60px #f1602b; }
}

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

.bbq-title {
    background-color: #4a90e2;
    padding: 10px 30px;
    margin-bottom: 20px;
    display: inline-block;
}

.bbq-title h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.welcome-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}



.hero-titlee {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;

    line-height: 1.2;
    animation: fadeInDown 1.2s ease-out, textGlow 2s ease-in-out infinite alternate;
    display: inline-block;
}
.hero-titlee2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1602b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
    animation: fadeInDown 1.2s ease-out, textGlow 2s ease-in-out infinite alternate;
    display: inline-block;
}
.hero-titlee:nth-child(2) {
    font-size: 1.8rem;
    margin-bottom: 40px;
    animation-delay: 0.3s;
}
.hero-titlee2:nth-child(2) {
    font-size: 1.8rem;
    margin-bottom: 40px;
    animation-delay: 0.3s;
}
@keyframes textGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 10px rgba(241, 96, 43, 0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 20px rgba(241, 96, 43, 0.8), 0 0 30px rgba(241, 96, 43, 0.6);
    }
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-out;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #f1602b, #f7931e);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #f7931e, #f1602b);
}

.btn-secondary:hover {
    background: rgb(174, 174, 174);
    color: #ffffff;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

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

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image-item:hover {
    transform: scale(1.05);
}

.about-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: #000;
    
}

.menu-header {
    margin-bottom: 30px;
}

.page-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.page-link {
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.page-link.active {
    color: #ff6b35;
    font-weight: 600;
}

.page-link:hover {
    color: #ff6b35;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    justify-items: center;
}

.menu-item.hexagon {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.menu-item.hexagon:hover {
    transform: scale(1.08);
}

.menu-item.hexagon img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    margin: 10%;
}

.menu-item.hexagon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item.hexagon:hover::after {
    opacity: 1;
}

.menu-item.hexagon:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.menu-button-container {
    text-align: center;
}

.btn-menu {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a1a1a;
}

.contact-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-image-item {
    position: relative;
    
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.contact-image-item:hover {
    transform: translateY(-10px);
}

.contact-image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.contact-overlay i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #111;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.footer-contact,
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item,
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-item i,
.info-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span,
.info-item span {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .main-logo {
        width: 180px;
        height: 180px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 15px;
        max-width: 900px;
    }
    
    .menu-item.hexagon {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('images/background phone.png');
        background-attachment: scroll;
        padding: 100px 20px 50px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    .nav-logo img {
        width: 35px;
        height: 35px;
    }
    
    .main-logo {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 250px;
        text-align: center;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .about-image-item img {
        height: 200px;
    }
    
    .menu {
        padding: 60px 0;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 500px;
    }
    
    .menu-item.hexagon {
        width: 140px;
        height: 140px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-image-item img {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .page-navigation {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 40px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .nav-logo span {
        font-size: 0.9rem;
    }
    
    .nav-logo img {
        width: 30px;
        height: 30px;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .welcome-text {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 220px;
    }
    
    .about,
    .menu,
    .contact {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 25px;
        padding: 15px;
    }
    
    .menu-item.hexagon {
        width: 200px;
        height: 200px;
    }
    
    .contact-image-item img {
        height: 200px;
    }
    
    .contact-overlay {
        bottom: 15px;
        left: 15px;
        padding: 8px 15px;
    }
    
    .contact-overlay span {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .contact-item span,
    .info-item span {
        font-size: 0.9rem;
    }
    
    .page-navigation {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .page-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.2rem;
    }
    
    .main-logo {
        width: 100px;
        height: 100px;
    }
    
    .btn {
        width: 200px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .menu-item.hexagon {
        width: 180px;
        height: 180px;
    }
    
    .menu-grid {
        max-width: 280px;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        display: none;
    }
}

/* Page Headers */
.menu-page-header,
.contact-page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Styles for menu items on homepage only */
.menu-item.hexagon {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-item.hexagon:hover {
    transform: scale(1.05);
}

.menu-item.hexagon img {
    position: absolute;
    width: 70%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.3s ease;
    top: 15%;
    left: 15%;
}

.menu-item.hexagon:hover img {
    transform: scale(1.1);
        align-self: center;
    }


/* Contact Page Styles */
.contact-page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('images/background pc .png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.logo-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

.logo-badge img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

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

.page-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.header-decoration {
    margin-top: 30px;
}

.flame-icon {
    display: inline-block;
    font-size: 2rem;
    color: #ff6b35;
    animation: flicker 2s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.modern-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

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

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

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ff6b35);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.contact-card:hover .card-glow {
    opacity: 1;
}

.special-card {
    background: linear-gradient(145deg, #fff5f0 0%, #ffe8d6 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border: none;
    position: relative;
    z-index: 1;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e55a2b, #ff6b35);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modern-btn:hover::before {
    opacity: 1;
}

.btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    font-weight: 700;
    color: #ff6b35;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

.status-badge.open {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    animation: pulseGreen 2s ease-in-out infinite;
}

.status-badge.closed {
    background: linear-gradient(45deg, #F44336, #E53935);
    color: #fff;
    animation: pulseRed 2s ease-in-out infinite;
    /* Force cache refresh */
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(244, 67, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0); }
}

.status-badge i {
    font-size: 0.8rem;
    animation: blink 1.5s ease-in-out infinite;
}

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

/* Contact Form */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('images/background pc .png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.modern-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.form-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.floating-label {
    position: relative;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 20px 15px 10px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.floating-label label {
    position: absolute;
    left: 15px;
    top: 20px;
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.floating-label input:focus + label,
.floating-label input:valid + label,
.floating-label textarea:focus + label,
.floating-label textarea:valid + label {
    top: 5px;
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
}

.floating-label input:focus,
.floating-label textarea:focus {
    outline: none;
    border-bottom-color: #ff6b35;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    transition: width 0.3s ease;
}

.floating-label input:focus ~ .form-line,
.floating-label textarea:focus ~ .form-line {
    width: 100%;
}

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

.modern-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.modern-submit {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-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 ease;
}

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

.modern-submit:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.modern-submit:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.social-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-5px);
}

/* Instagram styling */
.social-link[href*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff;
    border: 2px solid #e6683c;
}

.social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #e6683c 0%,#dc2743 25%,#cc2366 50%,#bc1888 75%,#8b0a50 100%);
}

/* TikTok styling */
.social-link[href*="tiktok"] {
    background: #000;
    color: #fff;
    border: 2px solid #ff0050;
}

.social-link[href*="tiktok"]:hover {
    background: #ff0050;
    color: #fff;
}

/* WhatsApp styling */
.social-link[href*="whatsapp"], .social-link[href*="wa.me"] {
    background: #25D366;
    color: #fff;
    border: 2px solid #128C7E;
}

.social-link[href*="whatsapp"]:hover, .social-link[href*="wa.me"]:hover {
    background: #128C7E;
    color: #fff;
}

.social-link i {
    font-size: 1.5rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    
    .main-logo {
        width: 200px;
        height: 200px;
    }
    
    .book {
        width: 90%;
        max-width: 400px;
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons-center {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-btn-large {
        width: 250px;
        height: 120px;
    }
}