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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

:root {
    --primary-color: #008080; /* Teal */
    --secondary-color: #36454F; /* Charcoal */
    --accent-color: #20B2AA; /* Light Sea Green */
    --text-dark: #36454F;
    --text-light: #6B7280;
    --white: #CBD5E1;
    --light-gray: #94A3B8;
    --dark-white: #F1F5F9; /* Darker white for header */
    --border-color: #E9ECEF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #CBD5E1;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(248, 250, 252, 0.3) 50%,
        rgba(0, 128, 128, 0.08) 85%,
        rgba(0, 128, 128, 0.02) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border-bottom: none;
}

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

.logo {
    display: flex;
    align-items: center;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.logo:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 128, 128, 0.4));
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(0deg);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 128, 128, 0.15);
    transform: perspective(1000px) rotateX(-5deg) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
    border-color: rgba(0, 128, 128, 0.3);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 128, 128, 0.1));
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.4);
    z-index: 1;
}

.nav-link:hover::after {
    width: 80%;
}

.booking-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateX(0deg);
    z-index: 100;
    isolation: isolate;
}

.booking-btn::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: var(--transition);
}

.booking-btn:hover {
    transform: perspective(1000px) rotateX(-8deg) translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 128, 128, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.book-now-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: var(--white) !important;
    border-radius: 20px !important;
    padding: 0.8rem 2rem !important;
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.book-now-btn:hover {
    transform: perspective(1000px) rotateX(-8deg) translateY(-5px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0, 128, 128, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.book-now-btn::after {
    display: none !important;
}

/* Hide Tawk.to default widget since we have our own */
#tawkchat-minified-container {
    display: none !important;
}

#tawkchat-chat-container {
    z-index: 9999 !important;
}

/* Modern Modal Styles */
.modern-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.modern-modal.closing {
    animation: modalFadeOut 0.3s ease;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(54, 69, 79, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
    border: 1px solid rgba(0, 128, 128, 0.2);
}

.modal-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.modal-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.modal-title {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: rgba(0, 128, 128, 0.05);
    display: flex;
    justify-content: flex-end;
}

.modal-content.success .modal-header {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.modal-content.error .modal-header {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.modal-content.warning .modal-header {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

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

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.contact-link {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--secondary-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.contact-link:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 128, 128, 0.15) !important;
    transform: perspective(1000px) rotateX(-5deg) translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3) !important;
    border-color: rgba(0, 128, 128, 0.3) !important;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-link {
        padding: 1.2rem 2rem;
        display: block;
        text-align: center;
        border-radius: 15px;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Show hamburger on smaller screens */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-link {
        padding: 1.2rem 2rem;
        display: block;
        text-align: center;
        border-radius: 15px;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 180px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: var(--secondary-color);
    text-shadow: 0 8px 16px rgba(54, 69, 79, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.4);
    transform: scaleX(0);
    animation: expandLine 1.5s ease 0.5s forwards;
}

@keyframes expandLine {
    to { transform: scaleX(1); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--secondary-color);
    text-shadow: 0 4px 8px rgba(54, 69, 79, 0.2);
    transform: perspective(1000px) rotateX(3deg);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
}

.btn::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: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
}

.btn-primary:hover {
    transform: perspective(1000px) rotateX(-5deg) translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.4);
}

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

.btn-secondary {
    background: rgba(54, 69, 79, 0.1);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(54, 69, 79, 0.2);
    box-shadow: 0 8px 25px rgba(54, 69, 79, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(54, 69, 79, 0.1), rgba(54, 69, 79, 0.2));
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: perspective(1000px) rotateX(-5deg) translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(54, 69, 79, 0.4);
    border-color: var(--secondary-color);
}

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

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    transform: perspective(1000px) rotateX(5deg);
    text-shadow: 0 4px 8px rgba(54, 69, 79, 0.2);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.3);
}

/* Services */
.services {
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(0deg);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 128, 128, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 128, 128, 0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Reviews */
.reviews {
    background: var(--light-gray);
}

.reviews-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.review-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.rating-display {
    margin-bottom: 2rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Booking */
.booking {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

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

/* Booking Form Responsive Design */
.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    border: 1px solid rgba(0, 128, 128, 0.1);
    width: 100%;
    box-sizing: border-box;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-family);
    background: rgba(248, 250, 252, 0.5);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

/* Large Tablets */
@media (max-width: 1024px) {
    .booking-form {
        padding: 2.5rem;
        margin: 0 1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .booking-form {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .booking-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
        -webkit-appearance: none;
        appearance: none;
        background-color: white !important;
        border: 2px solid var(--border-color) !important;
        cursor: pointer;
    }
    
    .form-group select {
        background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>') !important;
        background-repeat: no-repeat !important;
        background-position: right 0.7rem top 50% !important;
        background-size: 0.65rem auto !important;
        padding-right: 2.5rem !important;
        cursor: pointer !important;
    }
    
    .form-group input[type="date"],
    .form-group input[type="time"] {
        -webkit-appearance: none !important;
        appearance: none !important;
        background-color: white !important;
        cursor: pointer !important;
        position: relative;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .btn-full {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .booking-form {
        padding: 1rem 0.8rem;
        margin: 0 0.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

.booking-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-family);
    background: rgba(248, 250, 252, 0.5);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1), 0 8px 25px rgba(0, 128, 128, 0.15);
    transform: translateY(-2px) scale(1.02);
    background: var(--white);
}

/* Contact */
.contact {
    background: var(--secondary-color);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.contact-map iframe {
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

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

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

.footer-section a:hover {
    color: var(--primary-color);
}

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

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chat-button:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

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

/* Enhanced Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .booking-form {
        padding: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        padding: 2rem 0;
        padding-top: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Horizontal stats on tablet */
    .hero-stats {
        flex-direction: row !important;
        gap: 2rem !important;
        justify-content: center !important;
        margin-top: 2rem !important;
        display: flex !important;
    }
    
    .stat {
        display: block !important;
        text-align: center !important;
    }
    
    .stat-number {
        display: block !important;
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        display: block !important;
        font-size: 0.9rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .about-content,
    .contact-content,
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .review-summary {
        max-width: 400px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .chat-widget {
        display: block !important;
        position: fixed !important;
        bottom: 1rem !important;
        right: 1rem !important;
        z-index: 1000 !important;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .chat-widget {
        display: block !important;
        position: fixed !important;
        bottom: 1rem !important;
        right: 1rem !important;
        z-index: 1000 !important;
    }
    
    .chat-button {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    .nav-container {
        padding: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Horizontal stats on mobile */
    .hero-stats {
        flex-direction: row !important;
        gap: 1rem !important;
        justify-content: center !important;
        margin-top: 2rem !important;
        display: flex !important;
    }
    
    .stat {
        display: block !important;
        text-align: center !important;
        flex: 1 !important;
    }
    
    .stat-number {
        display: block !important;
        font-size: 1.2rem !important;
    }
    
    .stat-label {
        display: block !important;
        font-size: 0.7rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .booking-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .mission-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .hamburger {
        display: flex !important;
    }
    
    .chat-widget {
        display: block !important;
        position: fixed !important;
        bottom: 0.5rem !important;
        right: 0.5rem !important;
        z-index: 1000 !important;
    }
    
    .chat-button {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .booking-form {
        padding: 1rem 0.5rem;
    }
    
    .btn {
        padding: 0.8rem 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn,
    .service-card,
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

.form-spacer {
    height: 20px;
}

/* Enhanced 3D Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(0deg);
}

.chat-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.chat-button:hover {
    transform: perspective(1000px) rotateY(-10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 128, 128, 0.5);
}

.chat-button:hover::before {
    opacity: 1;
}

/* 3D Social Links */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.3);
    transform: perspective(1000px) rotateY(0deg);
    position: relative;
    overflow: hidden;
}

.social-link::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: var(--transition);
}

.social-link:hover {
    transform: perspective(1000px) rotateY(-15deg) translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 128, 128, 0.4);
}

.social-link:hover::before {
    left: 100%;
}

/* Enhanced Review Cards with 3D */
.review-summary {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.review-summary:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 128, 128, 0.15);
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    text-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    transform: perspective(1000px) rotateX(10deg);
}

/* Parallax Hero Enhancement */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 128, 128, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 178, 170, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Glassmorphism Effects */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

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

/* Pulse Animation for CTA */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 128, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 128, 128, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}
/* Additional Charcoal Color Applications */
.review-author strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.contact-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* Enhanced Charcoal Shadows */
.service-card {
    box-shadow: 0 10px 30px rgba(54, 69, 79, 0.15);
}

.booking-form {
    box-shadow: 0 20px 60px rgba(54, 69, 79, 0.1);
    border: 1px solid rgba(54, 69, 79, 0.1);
}

.review-summary {
    border: 1px solid rgba(54, 69, 79, 0.1);
}

/* Charcoal Text for Better Visibility */
body {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
}
/* Water Wave Animation for Hero Section */
.wave-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    background: linear-gradient(90deg, 
        rgba(0, 128, 128, 0.6) 0%, 
        rgba(32, 178, 170, 0.7) 25%, 
        rgba(0, 128, 128, 0.6) 50%, 
        rgba(32, 178, 170, 0.7) 75%, 
        rgba(0, 128, 128, 0.6) 100%);
    border-radius: 50% 50% 0 0;
    animation: wave-flow 10s ease-in-out infinite;
}

.wave1 {
    animation-delay: 0s;
    opacity: 0.9;
    height: 100px;
    animation-duration: 10s;
}

.wave2 {
    animation-delay: -3s;
    opacity: 0.7;
    height: 120px;
    animation-duration: 12s;
}

.wave3 {
    animation-delay: -6s;
    opacity: 0.5;
    height: 140px;
    animation-duration: 14s;
}

@keyframes wave-flow {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) rotate(0deg) scaleY(1);
        border-radius: 50% 50% 0 0;
    }
    25% {
        transform: translateX(-48%) translateY(-8px) rotate(0.5deg) scaleY(1.05);
        border-radius: 55% 45% 0 0;
    }
    50% {
        transform: translateX(-50%) translateY(-5px) rotate(0deg) scaleY(0.95);
        border-radius: 45% 55% 0 0;
    }
    75% {
        transform: translateX(-52%) translateY(-12px) rotate(-0.5deg) scaleY(1.08);
        border-radius: 52% 48% 0 0;
    }
}

/* Enhanced Hero with Modern Animation */
.hero {
    position: relative;
    background: linear-gradient(180deg, 
        transparent 0%,
        transparent 60%,
        rgba(0, 128, 128, 0.1) 70%,
        rgba(0, 128, 128, 0.4) 80%,
        var(--primary-color) 85%, 
        var(--secondary-color) 100%);
    overflow: hidden;
    animation: gradient-shift 20s ease-in-out infinite;
    padding-top: 120px;
}

/* Modern Gradient Orb Animation */
.modern-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.3) 0%, rgba(32, 178, 170, 0.2) 50%, transparent 100%);
    filter: blur(40px);
    animation: float-orb 15s ease-in-out infinite;
}

.orb1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.orb2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
    animation-duration: 25s;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.25) 0%, rgba(0, 128, 128, 0.15) 50%, transparent 100%);
}

.orb3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 60%;
    animation-delay: -14s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.2) 0%, rgba(32, 178, 170, 0.1) 50%, transparent 100%);
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background: linear-gradient(180deg, 
            transparent 0%,
            transparent 60%,
            rgba(0, 128, 128, 0.1) 70%,
            rgba(0, 128, 128, 0.4) 80%,
            var(--primary-color) 85%, 
            var(--secondary-color) 100%);
    }
    50% {
        background: linear-gradient(180deg, 
            transparent 0%,
            transparent 60%,
            rgba(32, 178, 170, 0.15) 70%,
            rgba(0, 128, 128, 0.5) 80%,
            rgba(32, 178, 170, 0.9) 85%, 
            var(--secondary-color) 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: water-shimmer 12s ease-in-out infinite;
}

@keyframes water-ripple {
    0%, 100% {
        background: linear-gradient(180deg, 
            rgba(0, 128, 128, 0.1) 0%,
            var(--primary-color) 15%, 
            rgba(0, 128, 128, 0.9) 30%,
            rgba(32, 178, 170, 0.8) 70%,
            var(--secondary-color) 85%,
            rgba(54, 69, 79, 0.1) 100%);
    }
    25% {
        background: linear-gradient(180deg, 
            rgba(0, 128, 128, 0.05) 0%,
            rgba(0, 128, 128, 0.95) 18%, 
            var(--primary-color) 35%,
            rgba(32, 178, 170, 0.85) 65%,
            var(--secondary-color) 82%,
            rgba(54, 69, 79, 0.05) 100%);
    }
    50% {
        background: linear-gradient(180deg, 
            rgba(32, 178, 170, 0.08) 0%,
            rgba(32, 178, 170, 0.9) 20%, 
            rgba(0, 128, 128, 0.85) 40%,
            var(--primary-color) 60%,
            var(--secondary-color) 80%,
            rgba(54, 69, 79, 0.08) 100%);
    }
    75% {
        background: linear-gradient(180deg, 
            rgba(0, 128, 128, 0.12) 0%,
            var(--primary-color) 22%, 
            rgba(32, 178, 170, 0.9) 25%,
            rgba(0, 128, 128, 0.8) 75%,
            var(--secondary-color) 78%,
            rgba(54, 69, 79, 0.12) 100%);
    }
}

@keyframes water-shimmer {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    }
    33% {
        background: 
            radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    }
    66% {
        background: 
            radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
            radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 45%);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Floating Animation for Hero Elements */
.hero-title {
    animation: float-title 6s ease-in-out infinite;
}

.hero-subtitle {
    animation: float-subtitle 8s ease-in-out infinite;
}

.hero-buttons {
    animation: float-buttons 10s ease-in-out infinite;
}

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

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

@keyframes float-buttons {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
/* Logo zoom animation */
.logo-zoom {
    animation: logoZoomAnimation 2s ease-in-out;
}

@keyframes logoZoomAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}