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

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --text-color: #333;
    --light-text: #666;
    --accent-color: #f5f5f5;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #000000 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.808) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.75) 100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    background: linear-gradient(135deg, #ff1493 0%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff1493, #00bfff);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #00bfff;
}

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

.nav-book-btn {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    text-decoration: none;
    display: inline-block;
}

.nav-book-btn:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 60px 20px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 72px;
    margin-bottom: 30px;
    letter-spacing: 4px;
    font-weight: 700;
}

.hero-text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Feature Sections */
.feature-section {
    padding: 100px 0;
}

.feature-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.feature-section.reverse .feature-container {
    direction: rtl;
}

.feature-section.reverse .feature-content {
    direction: ltr;
}

/* Mobilde reverse section için özel düzenleme */
@media (max-width: 768px) {
    .feature-section.reverse .feature-container {
        direction: ltr;
        display: flex;
        flex-direction: column;
    }

    .feature-section.reverse .feature-content {
        order: 2;
        margin-top: 30px;
    }

    .feature-section.reverse .feature-image {
        order: 1;
    }
}

.feature-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

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

.feature-content {
    padding: 0 40px;
}

.feature-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 3px;
}

.feature-content p {
    font-size: 14px;
    line-height: 2;
    color: var(--light-text);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.feature-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.feature-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.grid-item {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 600px;
}

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

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

.grid-item.dark {
    background: var(--primary-color);
}

.grid-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--secondary-color);
    padding: 40px;
}

.grid-content h3 {
    font-size: 36px;
    letter-spacing: 3px;
}

/* Offers Section */
.offers-section {
    padding: 120px 50px;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f9ff 100%);
}

.offers-title {
    text-align: center;
    font-size: 54px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff1493 0%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offers-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
}

.offers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.offer-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.offer-card {
    background: var(--secondary-color);
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff1493, #00bfff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.2);
}

.offer-card.featured {
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
    border: 2px solid #ff1493;
}

.offer-card h3 {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 2px;
}

.offer-card p {
    font-size: 13px;
    line-height: 2;
    color: var(--light-text);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.offer-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.offer-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 50px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.newsletter-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff1493;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: var(--secondary-color);
    border: none;
    padding: 18px 45px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
}

/* Blog Section */
.blog-section {
    padding: 120px 50px;
    background: #f8f8f8;
}

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

.blog-title {
    font-size: 54px;
    margin-bottom: 15px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff1493 0%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.blog-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 15px;
}

.blog-post-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.blog-read-more {
    color: #ff1493;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-read-more {
    color: #00bfff;
}

/* Blog Post Page */
.blog-post-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #f8f8f8;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
    margin-bottom: 40px;
}

.back-link {
    color: #ff1493;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #00bfff;
}

.blog-post-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 20px;
}

.blog-post-main-title {
    font-size: 42px;
    line-height: 1.3;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.blog-post-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.blog-post-content {
    line-height: 1.8;
}

.blog-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f8f8;
    border-left: 4px solid #ff1493;
    border-radius: 5px;
}

.blog-post-content h2 {
    font-size: 28px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.blog-post-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.blog-post-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.8;
}

.blog-cta {
    background: linear-gradient(135deg, #fff5f8 0%, #f0f9ff 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.blog-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
    padding: 15px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.blog-cta-btn:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 120px 50px;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f9ff 100%);
}

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

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

.contact-title {
    font-size: 54px;
    margin-bottom: 15px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff1493 0%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff1493 0%, #00bfff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon svg {
    width: 35px;
    height: 35px;
}

.contact-info-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
}

.contact-info-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-info-text:hover {
    color: #ff1493;
}

.contact-map-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff1493;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-map-link:hover {
    color: #00bfff;
}

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

.contact-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
    padding: 18px 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-cta-btn:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 50px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo>div {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.footer-logo-mobile {
    display: none;
}

.footer-logo-desktop {
    display: block;
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-icon {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-amenities {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-size: 32px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 120px 50px;
    background: #fff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding: 0 20px;
}

.about-title {
    font-size: 54px;
    margin-bottom: 40px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff1493 0%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.about-feature {
    padding: 30px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
}

.about-feature p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.3px;
}

.about-mission {
    padding: 40px;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f9ff 100%);
    border-radius: 15px;
    margin-bottom: 40px;
}

.about-mission h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 1.5px;
}

.about-mission p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.5px;
}

.about-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
    padding: 18px 45px;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.about-btn:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
}

.about-image {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

/* Modern Gallery Grid */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 80px 0;
}

.grid-modern-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.grid-modern-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 40px 30px;
    transform: translateY(100px);
    transition: transform 0.4s ease;
}

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

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

.grid-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.grid-overlay p {
    color: #ff69b4;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    padding: 100px 50px;
    background: #f8f8f8;
}

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

.services-tag {
    background: #00bfa5;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    cursor: default;
}

.services-title {
    font-size: 48px;
    letter-spacing: 3px;
    margin-top: 20px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.service-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.bookmark-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.bookmark-btn svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.bookmark-btn:hover {
    background: #ff1493;
    transform: scale(1.1);
}

.bookmark-btn:hover svg {
    color: white;
}

.incele-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff1493;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.incele-btn:hover {
    background: #ff69b4;
    transform: translate(-50%, -50%) scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: #999;
}

.service-date {
    letter-spacing: 0.5px;
}

.service-category {
    font-weight: 500;
    color: #333;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 1px;
    color: #333;
}

.service-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.3px;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-btn svg {
    width: 30px;
    height: 30px;
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.phone-btn {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
}

.phone-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.5);
}

.instagram-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 30px rgba(188, 24, 136, 0.5);
}

/* Floating buttons animation on load */
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-btn {
    animation: slideInRight 0.5s ease forwards;
}

.instagram-btn {
    animation-delay: 0.1s;
}

.whatsapp-btn {
    animation-delay: 0.2s;
}

.phone-btn {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-section.reverse .feature-container {
        direction: ltr;
    }

    .feature-image {
        height: 400px;
    }

    .offers-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-modern-item {
        height: 350px;
    }

    .grid-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }

    .nav-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        background: #000;
        width: 100%;
        max-width: 100vw;
    }

    .navbar.scrolled {
        background: #000;
    }

    .hero {
        margin-top: 70px;
        min-height: 100vh;
        padding: 80px 20px;
        background-size: cover;
        background-position: center center;
        width: 100%;
        max-width: 100vw;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        font-weight: 700;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .feature-container {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
    }

    .feature-content h2 {
        font-size: 36px;
    }

    .offers-title {
        font-size: 36px;
    }

    .offers-section {
        padding: 80px 20px;
        width: 100%;
        max-width: 100vw;
    }

    .newsletter-section {
        padding: 60px 20px;
        width: 100%;
        max-width: 100vw;
    }

    .newsletter-section h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .newsletter-text {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 15px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 16px 25px;
        font-size: 14px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 16px 30px;
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100vw;
    }

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

    .services-section {
        padding: 60px 20px;
        width: 100%;
        max-width: 100vw;
    }

    .blog-section {
        padding: 80px 20px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .about-title {
        font-size: 36px;
    }

    .about-features {
        gap: 20px;
    }

    .gallery-grid-modern {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100vw;
        margin: 60px 0;
    }

    .grid-modern-item {
        height: 300px;
        width: 100%;
    }

    .footer {
        padding: 60px 20px 30px;
        width: 100%;
        max-width: 100vw;
    }

    .footer-content {
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-desktop {
        display: none;
    }

    .footer-logo-mobile {
        display: block;
        height: 270px !important;
    }

    .footer-logo-img {
        height: 270px;
    }

    .social-icons {
        justify-content: center;
    }

    /* Floating buttons for mobile */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .floating-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero {
        min-height: 100vh;
        padding: 60px 15px;
        width: 100%;
        max-width: 100vw;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 36px;
        font-weight: 700;
    }

    .hero-text {
        font-size: 13px;
    }

    .logo img {
        height: 40px;
    }

    .nav-book-btn {
        padding: 10px 20px;
        font-size: 10px;
    }

    .feature-container {
        padding: 0 15px;
    }

    .services-section,
    .about-section,
    .blog-section,
    .offers-section,
    .newsletter-section,
    .footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog-section {
        padding: 60px 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-post-container {
        padding: 40px 20px;
    }

    .blog-post-main-title {
        font-size: 32px;
    }

    .blog-post-image {
        height: 300px;
    }

    .blog-cta {
        padding: 30px 20px;
    }

    .contact-section {
        padding: 80px 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-title {
        font-size: 42px;
    }

    .contact-section {
        padding: 60px 15px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .about-section {
        padding: 60px 15px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-feature {
        padding: 25px;
    }

    .about-mission {
        padding: 30px;
    }

    .newsletter-section {
        padding: 50px 15px;
    }

    .newsletter-section h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .newsletter-text {
        font-size: 13px;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .newsletter-form {
        gap: 12px;
    }

    .newsletter-form input {
        padding: 15px 20px;
        font-size: 13px;
    }

    .newsletter-form button {
        padding: 15px 25px;
        font-size: 11px;
    }

    .gallery-grid-modern,
    .gallery-grid {
        width: 100%;
        max-width: 100vw;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-desktop {
        display: none;
    }

    .footer-logo-mobile {
        display: block;
        height: 270px !important;
    }

    .footer-logo-img {
        height: 270px;
    }

    .social-icons {
        justify-content: center;
    }
}