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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #FDFBF8;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(172, 152, 144, 0.1);
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
}

.navbar.scrolled {
    background: rgba(188, 187, 157, 0.98);
    box-shadow: 0 2px 30px rgba(172, 152, 144, 0.15);
    border-radius: 0 0 20px 20px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 40px; /* 150% larger than original 18px (27px + 50%) */
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(8%) saturate(1234%) hue-rotate(346deg) brightness(95%) contrast(89%);
}

.version-badge {
    background: linear-gradient(135deg, #AC9890, #BCBB9D);
    color: #FDFBF8;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(172, 152, 144, 0.3);
    opacity: 0.7;
}

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

.nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #AC9890;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #AC9890, #BCBB9D);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4A4A4A;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(172, 152, 144, 0.3);
    padding: 2rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-name {
    color: #AC9890;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    height: 48px; /* 60px - 20% = 48px */
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 10px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.slogan {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: #AC9890;
    color: #FDFBF8;
    box-shadow: 0 4px 15px rgba(172, 152, 144, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 152, 144, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #FDFBF8;
    border: 2px solid #FDFBF8;
}

.cta-button.secondary:hover {
    background: #FDFBF8;
    color: #AC9890;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #AC9890;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #AC9890, #BCBB9D);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4A4A4A;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(188, 187, 157, 0.1);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #AC9890;
    margin-bottom: 1.5rem;
}

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

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

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #FDFBF8;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(172, 152, 144, 0.1);
    border: 1px solid rgba(188, 187, 157, 0.2);
}

.feature i {
    font-size: 2rem;
    color: #AC9890;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #4A4A4A;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(172, 152, 144, 0.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #FDFBF8;
}

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

.service-card {
    background: #FDFBF8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(172, 152, 144, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(188, 187, 157, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(172, 152, 144, 0.25);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #AC9890, #BCBB9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDFBF8;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(172, 152, 144, 0.4);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #AC9890;
    margin-bottom: 1rem;
    text-align: center;
}

.service-content > p {
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.6;
}

.service-items {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(188, 187, 157, 0.3);
    margin: 0 1rem;
}

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

.service-name {
    font-weight: 500;
    color: #4A4A4A;
    text-align: left;
    flex: 1;
    padding-right: 1rem;
}

.service-price {
    font-weight: 600;
    color: #AC9890;
    font-size: 1.1rem;
    text-align: right;
    white-space: nowrap;
}

.service-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #AC9890, #BCBB9D);
    color: #FDFBF8;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    text-align: center;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 152, 144, 0.4);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: rgba(188, 187, 157, 0.05);
}

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

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(172, 152, 144, 0.1);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(172, 152, 144, 0.9));
    color: #FDFBF8;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: #FDFBF8;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(188, 187, 157, 0.08);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(172, 152, 144, 0.15);
    border: 1px solid rgba(188, 187, 157, 0.2);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4A4A4A;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(188, 187, 157, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FDFBF8;
    color: #4A4A4A;
}

.form-control:focus {
    outline: none;
    border-color: #AC9890;
    box-shadow: 0 0 0 3px rgba(172, 152, 144, 0.1);
}

.check-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #BCBB9D, #AC9890);
    color: #FDFBF8;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 187, 157, 0.4);
}

.availability-result {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.availability-result.available {
    background: rgba(188, 187, 157, 0.2);
    color: #4A4A4A;
    border: 1px solid #BCBB9D;
}

.availability-result.unavailable {
    background: rgba(172, 152, 144, 0.2);
    color: #4A4A4A;
    border: 1px solid #AC9890;
}

.whatsapp-main-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #FDFBF8;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-main-btn:disabled {
    background: rgba(188, 187, 157, 0.5);
    cursor: not-allowed;
}

.whatsapp-main-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #25d366;
    margin-bottom: 1rem;
}

.booking-info {
    color: #4A4A4A;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(188, 187, 157, 0.1);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FDFBF8;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(172, 152, 144, 0.1);
    border: 1px solid rgba(188, 187, 157, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #AC9890, #BCBB9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDFBF8;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #AC9890;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4A4A4A;
    line-height: 1.6;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(172, 152, 144, 0.2);
}

/* Footer */
.footer {
    background: #4A4A4A;
    color: #FDFBF8;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-section h4 {
    color: #AC9890;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(253, 251, 248, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(253, 251, 248, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #AC9890;
}

.footer-section ul li i {
    color: #AC9890;
    margin-right: 8px;
    width: 16px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #AC9890, #BCBB9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDFBF8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #BCBB9D, #D4AF37);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(172, 152, 144, 0.3);
    color: rgba(253, 251, 248, 0.7);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Highlight effect for booking form */
.booking-form.highlight {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(172, 152, 144, 0.15);
    }
    50% {
        box-shadow: 0 10px 30px rgba(172, 152, 144, 0.4), 0 0 0 3px rgba(172, 152, 144, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .nav-menu {
        gap: 1.25rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image img {
        height: 380px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-image img {
        height: 320px;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #FDFBF8;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(172, 152, 144, 0.2);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo-image {
        height: 18px; /* 14px + 30% = 18px */
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
}