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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    perspective: 1000px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
    transform: translateZ(20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) translateZ(10px);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 200% 100%;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
    transform: translateZ(15px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 300% 300%;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 215, 0, 0.3);
    transform: translateZ(0);
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-5px) translateZ(10px) rotateX(10deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6), 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 215, 0, 0.4);
    animation: gradientShift 1.5s ease-in-out infinite;
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid;
    border-image: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00, #FFD700) 1;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    color: white;
    transform: translateY(-3px) translateZ(5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo a {
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.logo-image {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.nav-logo a:hover .logo-image {
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
    text-shadow: none;
    animation: gradientShift 4s ease-in-out infinite;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.nav-menu {
    display: flex;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    transform: translateZ(5px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF8C00);
    transition: width 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
    transform-style: preserve-3d;
}

.hero-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
    transform: translateZ(30px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) translateZ(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateZ(30px);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 500;
    transform: translateZ(25px);
    animation: slideInLeft 1s ease-out 0.2s both, gradientShift 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    transform: translateZ(20px);
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateZ(15px);
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: slideInRight 1s ease-out 0.8s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateZ(0);
    }
}

.hero-image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 300% 300%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5), 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 40px rgba(255, 215, 0, 0.3);
    transform: rotateY(15deg) rotateX(10deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 6s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-image-placeholder:hover {
    transform: rotateY(25deg) rotateX(15deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(255, 215, 0, 0.6), 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 50px rgba(255, 215, 0, 0.5);
}

.hero-image-placeholder i {
    font-size: 6rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #fff;
    transform-style: preserve-3d;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

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

.service-category:hover::before {
    left: 100%;
}

.service-category:hover {
    transform: translateY(-10px) translateZ(20px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(255, 215, 0, 0.2), 0 0 30px rgba(255, 215, 0, 0.1);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    transform: translateZ(10px);
    animation: gradientShift 3s ease-in-out infinite;
}

.category-title i {
    font-size: 2rem;
    transition: transform 0.3s ease;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.service-category:hover .category-title i {
    transform: scale(1.2) rotate(10deg);
}

.service-items {
    display: grid;
    gap: 1.5rem;
}

.service-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    transform: translateZ(5px);
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.service-item li:hover {
    color: #FFD700;
    transform: translateX(5px) translateZ(5px);
}

.service-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-item li:hover::before {
    transform: scale(1.2);
}

/* Menu Section */
.menu {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform-style: preserve-3d;
}

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

.menu-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.menu-category::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-category:hover::after {
    opacity: 1;
}

.menu-category:hover {
    transform: translateY(-8px) translateZ(15px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(255, 215, 0, 0.2), 0 0 30px rgba(255, 215, 0, 0.1);
}

.menu-category h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
    transform: translateZ(10px);
    transition: all 0.3s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

.menu-category:hover h3 {
    background: linear-gradient(135deg, #FF8C00, #FFD700, #FFA500);
    background-size: 200% 200%;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.menu-category li:hover {
    color: #FFD700;
    transform: translateX(8px) translateZ(5px);
    padding-left: 5px;
}

.menu-category li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #fff;
    transform-style: preserve-3d;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.08) translateZ(20px) rotateY(10deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 215, 0, 0.3);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 300% 300%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    animation: gradientShift 4s ease-in-out infinite;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, #FF8C00, #FFD700, #FFA500, #FF8C00);
    background-size: 300% 300%;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-placeholder i {
    transform: scale(1.2) rotate(5deg);
}

.gallery-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform-style: preserve-3d;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    transform: translateZ(15px);
    animation: gradientShift 3s ease-in-out infinite;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.about-text li:hover {
    color: #FFD700;
    transform: translateX(5px) translateZ(5px);
}

.about-text li::before {
    content: '★';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.about-text li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

.about-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 300% 300%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 215, 0, 0.3);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 8s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

.about-image-placeholder:hover {
    transform: rotateY(-25deg) rotateX(10deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.6), 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 215, 0, 0.4);
}

.about-image-placeholder i {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #fff;
    transform-style: preserve-3d;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    transform: translateZ(0);
    padding: 1rem;
    border-radius: 15px;
}

.contact-item:hover {
    transform: translateX(10px) translateZ(10px);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 215, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 0.2rem;
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.contact-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.contact-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

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

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateZ(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 215, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    transform: translateZ(0);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    transform: translateZ(5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem 0;
    transform-style: preserve-3d;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
    transform: scale(1.1);
}

.footer-section h3,
.footer-section h4 {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transform: translateZ(10px);
    animation: gradientShift 3s ease-in-out infinite;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section p:hover {
    color: #FFD700;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.footer-section li:hover {
    transform: translateX(5px) translateZ(5px);
}

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

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% 200%;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
    animation: gradientShift 3s ease-in-out infinite;
}

.social-links a:hover {
    background: linear-gradient(135deg, #FF8C00, #FFD700, #FFA500);
    background-size: 200% 200%;
    transform: translateY(-5px) translateZ(10px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

.footer-bottom i {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heartbeat 2s ease-in-out infinite, gradientShift 3s ease-in-out infinite;
}

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

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

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

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo a {
        gap: 0.5rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .nav-logo span {
        font-size: 0.8rem;
    }

    .footer-logo-image {
        width: 40px;
        height: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo a {
        gap: 0.3rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-logo span {
        font-size: 0.7rem;
    }

    .footer-logo-image {
        width: 35px;
        height: 35px;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-category,
    .menu-category {
        padding: 1.5rem;
    }
}
