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

:root {
    --primary-color: #4A90E2;
    --secondary-color: #F4C430;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/Stone brick wall.jpg');
    background-size: 300px;
    background-repeat: repeat;
    background-position: center;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 50px;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%23ddd"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: slideInLeft 1s ease both;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line:first-child {
    animation: slideInLeft 1s ease 0.4s both;
}

.title-line:last-child {
    animation: slideInLeft 1s ease 0.6s both, gradientShift 3s ease-in-out infinite;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 1s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 1.4s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

.hero-buttons .btn i {
    margin-right: 0.5rem;
}

.hero-right {
    position: relative;
    animation: slideInRight 1s ease both;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    border-radius: 30px;
    z-index: 1;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -20px;
    left: -20px;
    animation: rotate 20s linear infinite;
}

.decoration-2 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    bottom: -20px;
    right: -20px;
    animation: rotate 20s linear infinite reverse;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .floating-card {
        display: none;
    }
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card h5 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-dark);
}

.floating-card p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}

.card-1 {
    top: 50px;
    left: -50px;
    animation-delay: 0.5s;
}

.card-2 {
    bottom: 50px;
    right: -50px;
    animation-delay: 1s;
}

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(74, 144, 226, 0.6), 0 0 30px rgba(244, 196, 48, 0.4);
    }
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #3a7bc8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

.section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.05;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.section-alt {
    background: var(--bg-light);
}

.section-alt::before {
    left: -150px;
    right: auto;
    animation-delay: 2s;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.specialties-carousel {
    padding: 2rem 0 4rem;
    overflow: visible !important;
}

.specialties-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.specialty-card-3d {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.specialty-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.specialty-card-3d.featured {
    border: 3px solid var(--secondary-color);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.specialty-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.specialty-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.specialty-card-3d:hover .specialty-image::after {
    opacity: 0.3;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.specialty-card-3d:hover .specialty-image img {
    transform: scale(1.15) rotate(2deg);
}

.specialty-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.specialty-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.specialty-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.specialties-carousel .swiper-slide {
    width: 350px;
}

@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category-card:nth-child(1) {
        height: auto;
    }
    
    .menu-category-card:nth-child(1) .category-content {
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .specialties-carousel .swiper-slide {
        width: 280px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category-card {
        height: auto !important;
    }
    
    .category-content {
        overflow-y: visible !important;
    }

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

    .couscous-section {
        margin: 3rem 0;
    }

    .couscous-parallax {
        min-height: auto;
    }

    .couscous-feature {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .couscous-feature {
        padding: 3rem 0;
    }
}

.text-center {
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.menu-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    height: auto;
}

.menu-category-card:nth-child(1) {
    height: 550px;
}

.menu-category-card:nth-child(1) .category-content {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.menu-category-card:nth-child(1) .category-content::-webkit-scrollbar {
    width: 6px;
}

.menu-category-card:nth-child(1) .category-content::-webkit-scrollbar-track {
    background: transparent;
}

.menu-category-card:nth-child(1) .category-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-category-card:nth-child(1) .category-content:hover::-webkit-scrollbar-thumb {
    opacity: 1;
}

.menu-category-card:nth-child(1) .category-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3a7bc8, #e0a800);
}

.menu-category-card:nth-child(1) { animation-delay: 0.1s; }
.menu-category-card:nth-child(2) { animation-delay: 0.2s; }
.menu-category-card:nth-child(3) { animation-delay: 0.3s; }

.menu-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.category-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    flex-grow: 1;
}

.category-content {
    padding: 2rem;
    flex: 1;
}

.category-content::-webkit-scrollbar {
    width: 6px;
}

.category-content::-webkit-scrollbar-track {
    background: transparent;
}

.category-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.category-content:hover::-webkit-scrollbar-thumb {
    opacity: 1;
}

.category-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3a7bc8, #e0a800);
}

.menu-items {
    display: grid;
    gap: 1.2rem;
}

.menu-item {
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-light);
    transition: var(--transition);
}

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

.menu-item:hover {
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.05), transparent);
}

.item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.sides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.side-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.side-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(244, 196, 48, 0.1));
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.side-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    display: block;
}

.side-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.side-item span {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}



.couscous-section {
    padding: 0;
    margin: 3rem 0;
}

.couscous-parallax {
    position: relative;
    min-height: 700px;
    width: 100%;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1645177628172-a94c1f96e6db?w=1600') center/cover;
    z-index: 0;
    will-change: transform;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.85), rgba(58, 123, 200, 0.85));
}

.couscous-feature {
    position: relative;
    padding: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    color: white;
    z-index: 1;
    min-height: 700px;
}

.couscous-feature::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.couscous-feature::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

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

.couscous-badge {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.couscous-content {
    position: relative;
    z-index: 2;
}

.couscous-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.couscous-price {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin: 2rem 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.couscous-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: var(--transition);
}

.couscous-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

.couscous-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.allergen-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reservation-form-container {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
}

.booking-form {
    max-width: 600px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    background: #fafafa;
}

.booking-form .btn-primary {
    margin-top: 1rem;
    border-radius: 4px;
    padding: 1rem;
    font-weight: 500;
}

.reservation-info-minimal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item-minimal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.info-item-minimal:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-item-minimal i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item-minimal p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.info-item-minimal.contact {
    border-left-color: var(--secondary-color);
}

.info-item-minimal.contact i {
    color: var(--secondary-color);
}

.info-item-minimal.contact a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-item-minimal.contact a:hover {
    color: var(--primary-color);
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
}

.info-block i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-block h4 {
    margin-bottom: 0.5rem;
}

.hours-table {
    width: 100%;
    margin-top: 0.5rem;
}

.hours-table td {
    padding: 0.3rem 0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.special-note {
    margin-top: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

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

.contact-card i {
    transition: var(--transition);
}

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

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.03;
    top: -200px;
    right: -200px;
    animation: float 10s ease-in-out infinite;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col:first-child h4 {
    font-family: 'Friends', sans-serif;
    font-weight: 400;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideDown 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-header {
        padding: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu a {
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }

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

    .hamburger {
        display: flex;
    }
    
    .logo img {
        height: 35px;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-image {
        height: 400px;
    }

    .card-1, .card-2 {
        display: none !important;
    }

    .decoration-1, .decoration-2 {
        display: none !important;
    }
    
    .hero-image-wrapper {
        width: 100%;
        overflow: hidden;
    }

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

    .features-grid,
    .sides-grid {
        grid-template-columns: 1fr;
    }

    .couscous-feature,
    .reservation-grid,
    .about-content,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .couscous-image {
        height: 300px;
    }
}


@media (max-width: 768px) {
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }

    .form-header {
        padding: 1.5rem;
    }

    .form-header i {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .booking-form {
        padding: 1.5rem;
    }
}


/* New Reservation Section Styles */
.reservation-container-new {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-new h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header-new p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.reservation-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-container-new {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.reservation-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group-new {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-new i {
    position: absolute;
    left: 18px;
    color: #4A90E2;
    font-size: 1.1rem;
    z-index: 1;
}

.input-group-new input,
.input-group-new select,
.input-group-new textarea {
    width: 100%;
    padding: 16px 18px 16px 50px;
    border: 2px solid #e8ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
}

.input-group-new input:focus,
.input-group-new select:focus,
.input-group-new textarea:focus {
    outline: none;
    border-color: #4A90E2;
    background: white;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.input-group-new textarea {
    resize: vertical;
    min-height: 100px;
}

.input-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-btn-new {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    border-radius: 10px;
    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-top: 10px;
}

.submit-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

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

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

.info-container-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box-new {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-box-new:hover {
    transform: translateY(-5px);
}

.info-box-new i {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 15px;
}

.info-box-new h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-box-new p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin: 5px 0;
}

.info-box-new p.small {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 8px;
}

.info-box-new.special {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.info-box-new.special i {
    color: #F4C430;
}

.info-box-new.special h3,
.info-box-new.special p {
    color: white;
}

.info-box-new.special p.small {
    color: rgba(255,255,255,0.8);
}

.info-box-new .phone-new {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box-new .phone-new:hover {
    color: #357ABD;
}

@media (max-width: 968px) {
    .reservation-grid-new {
        grid-template-columns: 1fr;
    }
    
    .info-container-new {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
    }
}

@media (max-width: 768px) {
    .section-header-new h2 {
        font-size: 2.2rem;
    }
    
    .form-container-new {
        padding: 30px 25px;
    }
    
    .input-row-new {
        grid-template-columns: 1fr;
    }
    
    .info-container-new {
        grid-template-columns: 1fr;
    }
}


/* About Section Redesign */
.about-section-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.stat-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.story-timeline {
    max-width: 900px;
    margin: 5rem auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-icon {
    grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
}

.timeline-item:nth-child(odd) .timeline-icon {
    grid-column: 2;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(244, 196, 48, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 2;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-icon,
    .timeline-item:nth-child(odd) .timeline-icon {
        grid-column: 1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


/* Glassmorphism Effects */
.feature-card,
.specialty-card-3d,
.menu-category-card,
.floating-card,
.stat-card,
.timeline-content,
.value-card,
.form-container-new,
.info-box-new,
.info-block,
.contact-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-icon {
    background: rgba(255,255,255,0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}



.info-box-new.special {
    background: rgba(74, 144, 226, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* Enhanced Animations */
.stat-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 25px 60px rgba(74, 144, 226, 0.3) !important;
}

.timeline-icon {
    position: relative;
}

.timeline-item:nth-child(1) .timeline-icon i {
    animation: lightUp 2s ease-in-out infinite;
}

.timeline-item:nth-child(2) .timeline-icon i {
    animation: pinBounce 1.5s ease-in-out infinite;
}

.timeline-item:nth-child(3) .timeline-icon i {
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes lightUp {
    0%, 100% { 
        opacity: 0.7;
        filter: brightness(1);
    }
    50% { 
        opacity: 1;
        filter: brightness(1.8) drop-shadow(0 0 10px #F4C430);
    }
}

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

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.2); }
    20%, 40% { transform: scale(1); }
}

.timeline-content {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.timeline-content:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25) !important;
}

.value-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.08) !important;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25) !important;
}

.value-icon {
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.menu-category-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.menu-category-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 70px rgba(74, 144, 226, 0.3) !important;
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25) !important;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.specialty-card-3d {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.specialty-card-3d:hover {
    transform: translateY(-20px) scale(1.05) !important;
    box-shadow: 0 30px 80px rgba(74, 144, 226, 0.35) !important;
}

.info-box-new {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.info-box-new:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.3) !important;
}

.contact-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25) !important;
}

.gallery-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.gallery-item:hover {
    transform: scale(1.08) rotate(2deg) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) { animation-delay: 0s; }
.floating-card:nth-child(2) { animation-delay: 1s; }

/* Ripple Effect on Click */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}
