/* ==================== Reset & Variables ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c9a45e;
    --secondary-color: #2c2c2c;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f8f8;
    --white: #ffffff;
    --gold: #c9a45e;
    --gold-dark: #b8934d;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --overlay: rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

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

/* ==================== Hide Prices, Calculator, Details, Share & Virtual Tour ==================== */
.villa-price,
.property-price,
.calculator-card,
.detail-card:has(.details-table),
.share-card,
.detail-card:has(.video-container) {
    display: none !important;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 164, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: var(--gold);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

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

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

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

/* ==================== Hero Slider ==================== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 8s ease-in-out infinite;
}

@keyframes zoomIn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    z-index: 1;
}

.slide-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-content .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* ==================== Sections ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin: 15px 0 20px;
    color: var(--secondary-color);
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

/* ==================== About Section ==================== */
.about-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 500px;
}

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

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

/* ==================== Featured Villas Section ==================== */
.featured-section {
    padding: 100px 0;
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.villa-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

.villa-card:hover .villa-image img {
    transform: scale(1.15);
}

.villa-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.villa-info {
    padding: 30px;
}

.villa-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.villa-location {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
}

.villa-location i {
    margin-right: 5px;
}

.villa-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.villa-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.villa-features span {
    color: var(--text-light);
    font-size: 13px;
}

.villa-features i {
    color: var(--gold);
    margin-right: 5px;
}

.villa-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.villa-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

/* ==================== Testimonials Section ==================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-logo i {
    color: var(--gold);
    font-size: 28px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info i {
    color: var(--gold);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==================== Page Header ==================== */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ==================== Projects Page ==================== */
.projects-section {
    padding: 80px 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ==================== Contact Page ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info-cards {
    display: grid;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-details p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
}

.success-message i {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* ==================== Map Section ==================== */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* ==================== Blog Page ==================== */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

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

.blog-image {
    position: relative;
    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-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* ==================== Pagination ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pagination-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .villas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-content {
        gap: 40px;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* About Page Tablet */
    .about-intro-content {
        gap: 40px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    /* Services Page Tablet */
    .services-grid-large {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 10px 0;
    }

    .hero-slider {
        height: 50vh;
        min-height: 400px;
        margin-top: 60px;
    }
    
    .slide-bg {
        background-size: cover;
        background-position: center;
    }

    .slide-content h1 {
        font-size: 42px;
        padding: 0 15px;
    }

    .slide-content p {
        font-size: 16px;
        padding: 0 15px;
    }

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

    .villas-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 16px;
    }

    .projects-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* About Page Mobile */
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro-image {
        height: 350px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-item {
        padding-left: 60px;
    }

    .why-choose-number {
        font-size: 40px;
    }

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

    .stat-number {
        font-size: 40px;
    }

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

    .team-image {
        height: 350px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        gap: 15px;
    }

    /* Services Page Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    /* Property Detail Mobile */
    .property-header-content {
        flex-direction: column;
    }

    .property-price-section {
        text-align: left;
    }

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

    .property-layout {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-slider {
        height: 45vh;
        min-height: 350px;
        margin-top: 55px;
    }

    .slide-content h1 {
        font-size: 28px;
        padding: 0 10px;
    }

    .slide-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .villa-info {
        padding: 20px;
    }

    .villa-features {
        flex-direction: column;
        gap: 10px;
    }

    .villa-price {
        font-size: 20px;
    }

    .villa-info h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
    }

    /* Map Mobile */
    .map-container iframe {
        height: 350px;
    }

    /* About Page Small Mobile */
    .about-intro-image {
        height: 280px;
    }

    .why-choose-item {
        padding-left: 50px;
    }

    .why-choose-number {
        font-size: 32px;
    }

    .why-choose-item h4 {
        font-size: 18px;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .team-image {
        height: 300px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Property Detail Small Mobile */
    .property-title-section h1 {
        font-size: 28px;
    }

    .property-price {
        font-size: 32px;
    }

    .gallery-main {
        height: 300px;
    }

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

    .property-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: center;
    }

    /* Map Small Mobile */
    .map-container iframe {
        height: 300px;
    }
}

/* ==================== About Page Styles ==================== */
.about-intro-section {
    padding: 80px 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.about-intro-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 500px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-vision-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.mission-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.why-choose-section {
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-choose-item {
    position: relative;
    padding-left: 70px;
}

.why-choose-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.why-choose-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.why-choose-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.stats-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 164, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.team-info p {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Services Page Styles ==================== */
.services-intro-section {
    padding: 80px 0 40px;
    background: var(--light-gray);
}

.services-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.main-services-section {
    padding: 80px 0;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card-large {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 164, 94, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-large:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 64px;
    color: var(--white);
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content > p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: var(--gold);
    font-size: 16px;
}

.additional-services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: rotateY(360deg);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.process-section {
    padding: 80px 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 90px;
    width: 2px;
    height: calc(100% + 10px);
    background: var(--border-color);
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-content {
    flex: 1;
    padding-top: 15px;
}

.process-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.process-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ==================== Property Detail Page ==================== */
.property-header {
    padding: 120px 0 40px;
    background: var(--light-gray);
}

.property-header-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.property-title-section h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.property-location {
    font-size: 16px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-price-section {
    text-align: right;
    display: none;
}

.property-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 15px;
}

.property-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.property-gallery {
    padding: 40px 0;
}

.gallery-grid {
    display: grid;
    gap: 20px;
}

.gallery-main {
    position: relative;
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.gallery-nav-btn.prev-gallery {
    left: 20px;
}

.gallery-nav-btn.next-gallery {
    right: 20px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--gold);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-details-section {
    padding: 60px 0;
}

.property-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.detail-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.property-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 36px;
    color: var(--gold);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.detail-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--gold);
    font-size: 14px;
}

.details-table {
    display: grid;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.detail-value {
    color: var(--text-light);
}

.location-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-description i {
    color: var(--gold);
}

.map-placeholder iframe {
    width: 100%;
    height: 400px;
    border-radius: 4px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.video-placeholder i {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 15px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.agent-card {
    text-align: center;
}

.agent-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

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

.agent-title {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    padding: 12px 20px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.inquiry-form .form-group {
    margin-bottom: 15px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.full-width {
    width: 100%;
}

.calculator-form .form-group {
    margin-bottom: 15px;
}

.calculator-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.mortgage-result {
    margin-top: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 4px;
    display: none;
}

.mortgage-result.show {
    display: block;
}

.mortgage-result p {
    margin: 10px 0;
    font-size: 14px;
    color: var(--text-color);
}

.mortgage-result strong {
    color: var(--gold);
    font-size: 18px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.similar-properties {
    padding: 80px 0;
    background: var(--light-gray);
}

/* ==================== Animations ==================== */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== Enhanced Mobile Responsive Styles ==================== */

/* Tablet Landscape - Additional Improvements */
@media (max-width: 1024px) {
    .logo {
        font-size: 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .property-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile - Enhanced Responsiveness */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 32px !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    h3 {
        font-size: 24px !important;
    }
    
    h4 {
        font-size: 20px !important;
    }
    
    /* Navbar & Header */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-wrapper {
        padding: 0 15px;
    }
    
    /* Header Logo */
    .logo {
        font-size: 16px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo span {
        display: none;
    }
    
    /* Hero Slider - Reduced Height */
    .hero-slider {
        height: 50vh !important;
        min-height: 380px;
        max-height: 500px;
        margin-top: 60px;
    }
    
    .slide-bg {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    /* Sections Padding */
    section {
        padding: 50px 0 !important;
    }
    
    section:not(.hero-slider) {
        padding: 50px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Hero Buttons */
    .slide-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: auto;
        min-width: 200px;
    }
    
    /* Villa/Property Cards */
    .villa-card,
    .property-card {
        margin-bottom: 20px;
    }
    
    .villa-features,
    .property-features {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .villa-features span,
    .property-features span {
        font-size: 13px;
    }
    
    .villa-footer,
    .property-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .villa-footer .btn,
    .property-footer .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Blog Cards */
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .blog-meta span {
        font-size: 12px;
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        margin-bottom: 20px;
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    /* Contact Info */
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-grid {
        gap: 20px;
    }
    
    /* Forms */
    .contact-form,
    .sidebar-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Buttons Full Width on Mobile */
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    /* Gallery */
    .gallery-main {
        height: 350px;
    }
    
    .gallery-thumbnails {
        gap: 8px;
    }
    
    .gallery-thumbnails img {
        height: 70px;
    }
    
    /* Property Stats */
    .property-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-item i {
        font-size: 24px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Features Grid */
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 10px;
        padding: 25px;
    }
    
    .modal-header h3 {
        font-size: 22px;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    /* Sidebar */
    .sidebar {
        margin-top: 40px;
    }
    
    .sidebar-card {
        padding: 25px;
    }
    
    /* Blog Detail */
    .blog-detail-header h1 {
        font-size: 32px;
    }
    
    .blog-detail-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .blog-detail-image {
        height: 300px;
    }
    
    .blog-detail-content {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .blog-detail-content h2 {
        font-size: 26px;
        margin: 30px 0 15px;
    }
    
    .blog-detail-content h3 {
        font-size: 22px;
        margin: 25px 0 12px;
    }
    
    /* Related Blog */
    .related-blog-card {
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    /* Services Grid */
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    /* Pagination */
    .pagination a,
    .pagination span {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    /* About Page */
    .about-intro-text h2 {
        font-size: 28px;
    }
    
    .about-intro-text p {
        font-size: 15px;
    }
    
    /* Video Container */
    .video-container {
        height: 300px !important;
    }
    
    .video-container video,
    .video-container iframe {
        height: 100%;
    }
}

/* Small Mobile - Extra Enhancements */
@media (max-width: 480px) {
    /* Further Typography Adjustments */
    h1 {
        font-size: 26px !important;
    }
    
    h2 {
        font-size: 22px !important;
    }
    
    h3 {
        font-size: 20px !important;
    }
    
    h4 {
        font-size: 18px !important;
    }
    
    /* Navbar */
    .navbar {
        padding: 8px 0;
    }
    
    /* Logo */
    .logo img {
        height: 35px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 42vh !important;
        min-height: 320px;
        max-height: 400px;
        margin-top: 55px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .slider-btn.prev {
        left: 8px;
    }
    
    .slider-btn.next {
        right: 8px;
    }
    
    .slider-dots {
        bottom: 12px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Sections */
    section {
        padding: 40px 0 !important;
    }
    
    section:not(.hero-slider) {
        padding: 40px 0 !important;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .slide-buttons .btn {
        width: 100%;
        min-width: unset;
    }
    
    /* Cards Padding */
    .villa-card .villa-info,
    .property-card .property-info,
    .blog-card .blog-content,
    .service-card,
    .testimonial-card {
        padding: 20px;
    }
    
    /* Forms */
    .contact-form,
    .sidebar-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Modal */
    .modal-content {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 15px 0;
    }
    
    /* Gallery */
    .gallery-main {
        height: 280px;
    }
    
    .gallery-thumbnails img {
        height: 60px;
    }
    
    /* Stats */
    .property-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    /* Page Header */
    .page-header {
        height: 250px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-logo img {
        height: 45px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-column ul li {
        font-size: 13px;
    }
    
    /* Blog Detail */
    .blog-detail-header h1 {
        font-size: 26px;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .blog-detail-content {
        font-size: 14px;
    }
    
    .blog-detail-content h2 {
        font-size: 22px;
    }
    
    .blog-detail-content h3 {
        font-size: 20px;
    }
    
    /* Video Container */
    .video-container {
        height: 220px !important;
    }
    
    /* Contact Cards */
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-info-item {
        font-size: 14px;
    }
    
    /* Service Icon */
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-slider {
        height: 38vh;
        min-height: 300px;
        max-height: 380px;
        margin-top: 50px;
    }
    
    .slide-content h1 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .gallery-main {
        height: 240px;
    }
    
    .page-header {
        height: 220px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .logo img {
        height: 35px;
    }
}

/* Landscape Orientation for Small Devices */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }
    
    .nav-menu {
        height: calc(100vh - 60px);
        top: 60px;
        padding: 20px;
    }
    
    .page-header {
        height: 100vh;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .villa-card:hover,
    .blog-card:hover,
    .service-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    .btn,
    .filter-btn,
    .pagination a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
    }
    
    .close-modal {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ==================== Scroll Animations ==================== */
@media (prefers-reduced-motion: no-preference) {
    .villa-card,
    .blog-card,
    .testimonial-card {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .villa-card:nth-child(1),
    .blog-card:nth-child(1),
    .testimonial-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .villa-card:nth-child(2),
    .blog-card:nth-child(2),
    .testimonial-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .villa-card:nth-child(3),
    .blog-card:nth-child(3),
    .testimonial-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .villa-card:nth-child(n+4),
    .blog-card:nth-child(n+4) {
        animation-delay: 0.4s;
    }
}

