/* Enhanced CSS with Animations for The EZEL PLACE */
:root {
    --primary-color: #283747;
    --secondary-color: #c0c0c0;
    --accent-color: #a8a8a8;
    --light-gray: #f8f8f8;
    --medium-gray: #e0e0e0;
    --dark-gray: #d28d14;
    --white: #ffffff;
    --black: #000000;
    --stackwave-green: #32CD32;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-medium: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--primary-color);
    background-color: var(--white);
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInPage 1s ease-in-out forwards;
}

@keyframes fadeInPage {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-medium);
    position: relative;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
}

section {
    padding: 100px 0;
    position: relative;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.fade-in {
    opacity: 0;
    transition: var(--transition-slow);
}

.fade-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.fade-left {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* Section Headings */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition-medium);
}

.section-header:hover h2::after {
    width: 80%;
}

.separator {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
}

.separator::before, .separator::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    transition: var(--transition-slow);
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.section-header:hover .separator::before,
.section-header:hover .separator::after {
    width: 40%;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--primary-color);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-secondary:hover::before {
    left: 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background-color: transparent;
    transition: var(--transition-medium);
}

header.sticky {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
    animation: slideDown 0.5s forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-medium);
    filter: brightness(0) invert(1);
}

header.sticky .logo-img {
    filter: none;
    height: 45px;
}

.logo h1 {
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 0;
    transition: var(--transition-medium);
    text-shadow: var(--text-shadow);
}

header.sticky .logo h1 {
    color: var(--primary-color);
    text-shadow: none;
    font-size: 24px;
}

/* Desktop Navigation */
nav .desktop-nav {
    display: flex;
}

nav .desktop-nav li {
    margin-left: 35px;
}

nav .desktop-nav li a {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-shadow: var(--text-shadow);
}

nav .desktop-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-medium);
}

nav .desktop-nav li a:hover::before,
nav .desktop-nav li a.active::before {
    width: 100%;
}

header.sticky nav .desktop-nav li a {
    color: var(--primary-color);
    text-shadow: none;
}

/* Enhanced hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    margin: 6px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

/* Hamburger animation to X */
.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    top: 14px;
}

header.sticky .hamburger span {
    background-color: var(--primary-color);
}

/* Mobile navigation overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Enhanced mobile menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #283747 0%, #1a252f 100%);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    display: none;
}

.mobile-nav.active {
    right: 0;
}

/* Mobile menu header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-nav-logo {
    font-size: 20px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Mobile menu items */
.mobile-nav ul {
    list-style: none;
    padding: 30px 0;
    margin: 0;
}

.mobile-nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 20px 25px;
    color: var(--white) !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(210, 141, 20, 0.2), rgba(210, 141, 20, 0.1));
    transition: width 0.3s ease;
}

.mobile-nav ul li a:hover::before,
.mobile-nav ul li a.active::before {
    width: 100%;
}

.mobile-nav ul li a:hover {
    color: #d28d14 !important;
    padding-left: 35px;
}

.mobile-nav ul li a.active {
    color: #d28d14 !important;
    background-color: rgba(210, 141, 20, 0.1);
}

/* Mobile menu footer */
.mobile-nav-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mobile-nav-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: var(--text-shadow);
    animation: fadeInDown 1.2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 40px;
    font-family: 'Lora', serif;
    font-style: italic;
    text-shadow: var(--text-shadow);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content .btn-primary {
    animation: fadeInUp 1.8s ease-out;
    background-color: #d28d14;
    border-color: #d28d14;
}

.hero-content .btn-primary:hover {
    color: #d28d14;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    background-color: var(--white);
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #576475;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background-color: var(--light-gray);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    text-align: center;
    padding: 50px 30px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-color: #d28d14;
    z-index: -1;
    transform: scale(0);
    transition: var(--transition-medium);
    border-radius: 5px;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-card:hover::before {
    transform: scale(1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    transition: var(--transition-medium);
    color: #576475;
}

.service-card p {
    transition: var(--transition-medium);
    color: #576475;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-icon {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.service-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
    transition: var(--transition-medium);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: rotateY(360deg);
    transition: transform 0.8s, color 0.3s;
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: var(--white);
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-info p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* Booking Section */
.booking {
    background-color: var(--light-gray);
    position: relative;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
}

.booking-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.booking-content .btn-primary {
    background-color: #d28d14;
    border-color: #d28d14;
}

.booking-content .btn-primary:hover {
    color: #d28d14;
}

.form-row {
    display: flex;
    margin-bottom: 25px;
    gap: 25px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--medium-gray);
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--dark-gray);
}

/* Newsletter Section */
.newsletter {
    background-color: #d28d14;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: pulse 15s infinite linear;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-content p {
    color: var(--medium-gray);
    margin-bottom: 35px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 3px 0 0 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 16px 30px;
    border-radius: 0 3px 3px 0;
}

/* Contact Section */
.contact {
    background-color: var(--white);
    position: relative;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
    transition: var(--transition-medium);
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-right: 25px;
    margin-top: 5px;
    transition: var(--transition-medium);
}

.info-item:hover i {
    color: var(--primary-color);
    transform: rotateY(360deg);
    transition: transform 0.8s, color 0.3s;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #576475;
}

.info-item p {
    color: #576475;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
}

.contact-map:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    transition: var(--transition-slow);
}

.contact-map:hover iframe {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color), var(--secondary-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-logo p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    font-style: italic;
    font-family: 'Lora', serif;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--medium-gray);
    transition: var(--transition-medium);
    position: relative;
    padding-left: 0;
}

.footer-links ul li a::before {
    content: '»';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-medium);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-social h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: scale(0);
    transition: var(--transition-medium);
    border-radius: 50%;
}

.social-icons a i {
    position: relative;
    z-index: 1;
    transition: var(--transition-medium);
}

.social-icons a:hover {
    transform: translateY(-10px);
}

.social-icons a:hover::before {
    transform: scale(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* StackWave Digital Link Styling */
.stackwave-link {
    color: var(--stackwave-green) !important;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-medium);
}

.stackwave-link:hover {
    color: #228B22 !important;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 5px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-gray);
    transition: var(--transition-medium);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    header.sticky .logo-img {
        height: 40px;
    }
    
    .footer-logo-img {
        height: 55px;
    }
}

@media screen and (max-width: 991px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 3px;
    }
    
    .newsletter-form input {
        border-radius: 3px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop nav */
    nav .desktop-nav {
        display: none;
    }
    
    /* Show mobile nav */
    .mobile-nav {
        display: block;
    }
    
    .booking-content {
        padding: 35px 25px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    header.sticky .logo-img {
        height: 35px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .booking-content {
        padding: 30px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    header.sticky .logo-img {
        height: 30px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav.active {
        right: 0;
    }
} span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    top: 14px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}


.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    top: 14px;
}