/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 70px;
    width: auto;
}

/* ===== HAMBURGER MENU BUTTON ===== */
.hamburger-menu-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HEADER BUTTONS ===== */
.phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-btn:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.reservation-btn {
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.reservation-btn:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ===== MOBILE MENU ===== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 1999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #2c3e50;
    transition: background 0.3s ease;
    gap: 1rem;
}

.mobile-menu-item:hover {
    background: #f8f9fa;
    color: #d4af37;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(52, 73, 94, 0.5));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-opening {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    font-size: clamp(1rem, 3vw, 1.2rem);
    position: relative !important;
    top: auto !important;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: #e6dcca;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:first-child {
    grid-column: 1 / -1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== DISCOVER SECTION ===== */
.discover {
    padding: 100px 0;
    background: #ede4d5;
}

.discover-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.discover-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: left;
}

.discover-text p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.discover-button-container {
    text-align: center;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 15px 35px;
}

.discover-btn i {
    font-size: 1.2rem;
}

/* ===== VILLAS SECTION ===== */
.villas {
    padding: 100px 0;
    background: #e6dcca;
    
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.villa-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.villa-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.villa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.villa-card:hover .villa-overlay {
    opacity: 1;
}

.villa-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.feature {
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.villa-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.villa-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.villa-description {
    color: #7f8c8d;
    margin-bottom: 1rem;
    height: 3.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.2;
}

.villa-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ===== VILLA ACTIONS ===== */
.villa-actions {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
}

.villa-detail-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px 20px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== VILLA MODAL ===== */
.villa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.villa-modal-overlay.active {
    opacity: 1;
}

.villa-modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.villa-modal-overlay.active .villa-modal-content {
    transform: scale(1);
}

.villa-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.villa-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.villa-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
}

.villa-modal-gallery {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.villa-modal-main-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.villa-modal-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.villa-modal-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
    background: #f8f9fa;
}

.villa-modal-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.villa-modal-thumbnail.active {
    border-color: #d4af37;
}

.villa-modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-modal-info {
    padding: 30px;
    overflow-y: auto;
    max-height: 90vh;
}

.villa-modal-info h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2rem;
}

.villa-modal-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
}

.villa-modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.villa-modal-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.villa-modal-features .feature-item i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.villa-modal-description {
    margin-bottom: 25px;
}

.villa-modal-description h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.villa-modal-description p {
    color: #7f8c8d;
    line-height: 1.6;
}

.villa-modal-highlights {
    margin-bottom: 25px;
}

.villa-modal-highlights h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.villa-modal-highlights ul {
    list-style: none;
    padding: 0;
}

.villa-modal-highlights li {
    color: #7f8c8d;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.villa-modal-highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.villa-modal-actions {
    text-align: center;
}

.villa-reservation-btn {
    width: 100%;
    font-size: 1rem;
    padding: 15px 30px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: #e6dcca;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1rem;
}

.gallery-container .gallery-item {
    position: relative;
    height: 300px;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: #e6dcca;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #d4af37;
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #2c3e50;
}

.author-title {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: #ede4d5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-description {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 0.2rem;
    color: #2c3e50;
}

.contact-text p {
    color: #7f8c8d;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #2c3e50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

/* ===== FORM STYLES ===== */
.form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b8941f;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */


@media (min-width: 2560px) {
    /* 2K ve üzeri monitörler için stiller */
    .hero-logo {
        top: -185px;
    }
    
    .hero-logo-img {
        height: 160px;
    }
}

/* Çok büyük ekranlar */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-logo {
        top: -260px;
    }
    
    .hero-logo-img {
        height: 160px;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 50px;
    }
    
    .hero-logo {
        top: -240px;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 1280px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 50px;
    }
    
    .hero-logo {
        top: -260px;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Tablet ve küçük masaüstü */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .hero-logo {
        top: -260px;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .about-content,
    .discover-content,
    .contact-content {
        gap: 3rem;
    }
    
    .feature-grid {
        gap: 1.2rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
    }
    
    .header-content {
        align-items: flex-start;
        padding-top: 0.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .header-left {
        align-items: flex-start;
    }
    
    .header-right {
        gap: 0.5rem;
        align-items: flex-start;
        padding-top: 0.2rem;
    }
    
    .logo {
        margin-top: -0.3rem;
    }
    
    .reservation-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .phone-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-logo {
        top: -300px;
    }
    
    .hero-logo-img {
        height: 150px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about,
    .discover,
    .villas,
    .gallery-section,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .discover-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .discover-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .discover-text p {
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-contact ul {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .villas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .gallery-container .gallery-item {
        height: 250px;
    }
    
    .villa-modal-body {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .villa-modal-gallery {
        max-height: 300px;
    }
    
    .villa-modal-main-image {
        max-height: 200px;
    }
    
    .villa-modal-thumbnails {
        padding: 10px 15px;
    }
    
    .villa-modal-info {
        padding: 20px;
        max-height: 60vh;
    }
    
    .villa-modal-features {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
}

/* Mobil landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 40px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-logo {
        top: -220px;
    }
    
    .hero-logo-img {
        height: 110px;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .about,
    .discover,
    .villas,
    .gallery-section,
    .testimonials,
    .contact {
        padding: 50px 0;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-logo {
        top: -270px;
    }
    
    .hero-logo-img {
        height: 130px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-opening {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .about,
    .discover,
    .villas,
    .gallery-section,
    .testimonials,
    .contact {
        padding: 40px 0;
    }
    
    .about-text h2,
    .contact-info h2 {
        text-align: center;
    }
    
    .discover-text h3 {
        font-size: 1.3rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-container .gallery-item {
        height: 200px;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .reservation-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .phone-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .header-left {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .discover-btn {
        padding: 12px 30px;
    }
}

/* Çok küçük mobil cihazlar */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-logo {
        top: -210px;
    }
    
    .hero-logo-img {
        height: 110px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-opening {
        font-size: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .reservation-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .phone-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .hamburger-menu-btn span {
        width: 20px;
        height: 2px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}
