/* Global Styles */
:root {
    --primary-color: #708238;
    --primary-gradient: linear-gradient(135deg, #708238 0%, #556B2F 100%);
    --secondary-color: #BABB74;
    --secondary-gradient: linear-gradient(135deg, #BABB74 0%, #AEB268 100%);
    --accent-color: #3A5311;
    --dark-color: #2B3D0F;
    --light-color: #F8F8F0;
    --text-color: #333333;
    --section-padding: 6rem 0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 40px rgba(112, 130, 56, 0.2);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: transform 0.3s ease;
    transform-origin: center center;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.7;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 9998;
    opacity: 0.3;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 500;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #556B2F 0%, #708238 100%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.divider {
    height: 4px;
    width: 80px;
    background: var(--primary-gradient);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.placeholder-img {
    background: linear-gradient(135deg, #f5f6e8 0%, #e9eacf 100%);
    min-height: 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.placeholder-img::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: transparent;
    transition: var(--transition);
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(248, 248, 240, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.2rem;
    margin-bottom: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

header:not(.scrolled) .logo h1 {
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
    color: var(--text-color);
}

header:not(.scrolled) nav ul li a {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

header:not(.scrolled) nav ul li a::after {
    background: white;
}

nav ul li a:hover {
    color: var(--primary-color);
}

header:not(.scrolled) nav ul li a:hover {
    color: white;
    opacity: 0.9;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

header:not(.scrolled) .mobile-menu {
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(58, 83, 17, 0.5), rgba(58, 83, 17, 0.5)), url('images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(112, 130, 56, 0.8) 0%, rgba(186, 187, 116, 0.8) 100%);
    opacity: 0.85;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: heroTextUp 1s forwards 0.8s;
    opacity: 0;
    transform: translateY(40px);
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    font-weight: normal;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: white;
    animation: heroTextUp 1s forwards 1.1s;
    opacity: 0;
    transform: translateY(40px);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: heroTextUp 1s forwards 1.4s;
    opacity: 0;
    transform: translateY(40px);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInBtn 1s forwards 1.7s;
    opacity: 0;
    transform: translateY(20px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline:before {
    display: none;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll span {
    margin-bottom: 0.5rem;
}

.hero-scroll i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(112, 130, 56, 0.05);
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(186, 187, 116, 0.05);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeft 1s forwards;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--hover-shadow);
}

.about-text {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1s forwards 0.3s;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.chef-signature {
    margin-top: 2.5rem;
    text-align: right;
}

.chef-signature img {
    max-width: 150px;
    display: inline-block;
    filter: contrast(1.2);
}

/* Specialties Section */
.specialties {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(135deg, #F8F8F0 0%, #F5F6E8 100%);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2.5rem;
}

.specialty-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.specialty-item:nth-child(2) {
    animation-delay: 0.2s;
}

.specialty-item:nth-child(3) {
    animation-delay: 0.4s;
}

.specialty-item:nth-child(4) {
    animation-delay: 0.6s;
}

.specialty-item:nth-child(5) {
    animation-delay: 0.8s;
}

.specialty-item:nth-child(6) {
    animation-delay: 1s;
}

.specialty-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

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

.specialty-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.specialty-item:hover .specialty-image::before {
    opacity: 1;
}

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

.specialty-item:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-content {
    padding: 2rem;
}

.specialty-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.specialty-item:hover .specialty-content h3 {
    transform: translateY(-5px);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.services::before,
.services::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.03;
    z-index: 0;
}

.services::before {
    top: -100px;
    left: -100px;
}

.services::after {
    bottom: -100px;
    right: -100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.4s;
}

.service-item:nth-child(4) {
    animation-delay: 0.6s;
}

.service-item:nth-child(5) {
    animation-delay: 0.8s;
}

.service-item:nth-child(6) {
    animation-delay: 1s;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #F8F8F0 0%, #F5F6E8 100%);
    transition: var(--transition);
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-item:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.8rem;
    display: inline-block;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    transform: rotateY(360deg);
}

.service-item h3 {
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-item:hover h3 {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #F8F8F0 0%, #F5F6E8 100%);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

/* Apply staggered animation delay to gallery items */
.gallery-item:nth-child(2) {
    animation-delay: 0.1s;
}
.gallery-item:nth-child(3) {
    animation-delay: 0.2s;
}
.gallery-item:nth-child(4) {
    animation-delay: 0.3s;
}
.gallery-item:nth-child(5) {
    animation-delay: 0.4s;
}
.gallery-item:nth-child(6) {
    animation-delay: 0.5s;
}
.gallery-item:nth-child(7) {
    animation-delay: 0.6s;
}
.gallery-item:nth-child(8) {
    animation-delay: 0.7s;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(112, 130, 56, 0.8) 0%, rgba(186, 187, 116, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.7;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 8rem;
    color: rgba(112, 130, 56, 0.05);
    z-index: 0;
}

.testimonials::after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 8rem;
    color: rgba(186, 187, 116, 0.05);
    z-index: 0;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.testimonial-item:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-item:nth-child(3) {
    animation-delay: 0.6s;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.quote {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.testimonial-item p {
    font-style: italic;
    line-height: 1.8;
}

.client-info {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

.client-info::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    margin-right: 1rem;
    border-radius: 1px;
}

.client-info h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

/* Media Section */
.media {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #F8F8F0 0%, #F5F6E8 100%);
}

.media-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.media-logos img {
    max-width: 160px;
    filter: grayscale(100%);
    transition: var(--transition);
    opacity: 0.7;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.media-logos img:nth-child(2) {
    animation-delay: 0.2s;
}

.media-logos img:nth-child(3) {
    animation-delay: 0.4s;
}

.media-logos img:nth-child(4) {
    animation-delay: 0.6s;
}

.media-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(112, 130, 56, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(186, 187, 116, 0.03) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeft 1s forwards 0.3s;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.3rem;
}

.info-item-text h3 {
    margin-bottom: 0.5rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(112, 130, 56, 0.2);
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1s forwards 0.3s;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(112, 130, 56, 0.15);
    background-color: white;
}

.contact-form .btn {
    width: 100%;
}

/* Footer Section */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(112, 130, 56, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(186, 187, 116, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.footer-links h3,
.footer-newsletter h3 {
    color: white;
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    display: inline-block;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-top: 1.8rem;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    width: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #556B2F 0%, #708238 100%);
}

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

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --section-padding: 5rem 0;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.8rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .about-image img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    header {
        padding: 1rem 0;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--light-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        padding: 1rem 0;
        z-index: 1000;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f5f5f5;
        color: var(--text-color) !important;
        text-shadow: none !important;
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .divider {
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 3.5rem 0;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .specialties-grid,
    .services-grid,
    .gallery-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        gap: 3rem;
    }
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    border-radius: 50%;
    background: var(--primary-gradient);
    animation: bounce 1.5s infinite ease-in-out;
}

.circle:nth-child(1) {
    animation-delay: -0.3s;
}

.circle:nth-child(2) {
    animation-delay: -0.15s;
}

.loader-text {
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

body.loaded {
    overflow: auto;
}

body:not(.loaded) {
    overflow: hidden;
} 