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

:root {
    --bg-main: #EDF3EF;
    --bg-white: #FFFFFF;
    --bg-darker: #F8F9FA;
    --text-dark: #2F2F2F;
    --text-gray: #6B7280;
    --accent-green: #3C6E59;
    --accent-terracota: #C97C5D;
    --accent-hover: #2E4A3B;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

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

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(237, 243, 239, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.nav-contact {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--accent-green);
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-green);
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-green);
}

.nav-menu span {
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 8px;
    width: 45px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lang-btn:hover {
    border-color: var(--accent-green);
    transform: scale(1.05);
}

.lang-btn.active {
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(200, 168, 130, 0.3);
}

.flag-svg {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 9px;
    left: 50%;
    width: 0%;
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.cta-button a {
    background: linear-gradient(135deg, var(--accent-green), #4A8B6B);
    border: none;
    color: var(--bg-white); 
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(60, 110, 89, 0.3);
}

.cta-button a:hover {
    background: linear-gradient(135deg, #4A8B6B, var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 110, 89, 0.4);
}

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

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

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(42, 42, 42, 0.6), rgba(42, 42, 42, 0.6));
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--bg-white);
}

.hero-content h1 {
    color: var(--bg-white);
}

.hero-content p {
    color: var(--bg-white);
    opacity: 0.9;
}

.hero-badge {
    background: var(--accent-green);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-terracota), #D88A6A);
    color: var(--bg-white);
    padding: 1.25rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 124, 93, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #D88A6A, var(--accent-terracota));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 124, 93, 0.4);
}

.btn-contact {
    background: linear-gradient(135deg, var(--accent-green), #4A8B6B);
}

.btn-contact:hover {
    background: linear-gradient(135deg, #4A8B6B, var(--accent-green));
}

.btn-secondary {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 1.25rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(60, 110, 89, 0.2), transparent);
    transition: left 0.5s ease;
}

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



.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-green), #4A8B6B);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(60, 110, 89, 0.4);
}

.hero-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    z-index: 10;
}

.location span {
    display: block;
    color: var(--text-gray);
}

.location span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-darker);
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.section-badge {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

/* Floor Plan Section */
.floor-plan {
    padding: 6rem 0;
    background: var(--text-dark);
}

.floor-plan .section-header h2 {
    color: var(--bg-white);
}

.floor-plan .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.floor-plan-info h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.floor-plan-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.floor-details {
    margin: 2rem 0;
}

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

.detail-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.property-pdf {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--accent-green);
}

.property-pdf span {
    font-size: 2rem;
}

.floor-plan-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    background: var(--bg-darker);
    border-radius: 8px;
    padding: 1rem;
    margin: 0 auto;
    display: block;
}

.floor-plan-diagram {
    background: var(--bg-darker);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.floor-plan-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.floor-plan-legend {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Floor Plan Details */
.floor-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

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

.detail-item span:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.detail-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
}

.detail-value {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* New Floor Plan Button */
.floor-plan-cta {
    margin-top: 2rem;
}

.btn-floor-plan {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-terracota), #D88A6A);
    color: white;
    padding: 1.25rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 124, 93, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-floor-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-floor-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 124, 93, 0.4);
    background: linear-gradient(135deg, #D88A6A, var(--accent-terracota));
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-floor-plan:hover .btn-arrow {
    transform: translateX(5px);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

/* Amenities Section */
.amenities {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.amenities-header {
    text-align: left;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

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

.amenity-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amenity-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.amenity-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--text-dark);
}

.gallery .section-header h2 {
    color: var(--bg-white);
}

.gallery .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    min-width: 100%;
    height: 600px;
    position: relative;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-weight: 500;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.carousel-btn {
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.9), rgba(216, 138, 106, 0.9));
    color: var(--text-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--accent-green), #4A8B6B);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(60, 110, 89, 0.3);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

.indicator.active {
    background: linear-gradient(135deg, var(--accent-green), #4A8B6B);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(60, 110, 89, 0.3);
}

/* Location Section */
.location {
    padding: 4rem 0;
    background: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.location-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-main);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.location-map {
    background: var(--bg-main);
    border-radius: 12px;
    padding: 2rem;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-placeholder {
    width: 100%;
}

.map-placeholder h3 {
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
}

.map-visual {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 300px;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-darker);
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: var(--text-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group.focused {
    transform: translateY(-2px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: #FFFFFF !important;
    color: #2c3e50 !important;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(60, 110, 89, 0.1);
    transform: translateY(-1px);
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    min-width: 300px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
}

.notification-success {
    background: linear-gradient(135deg, var(--accent-green), #4A8B6B);
}

.notification-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Phone input with country selector */
.phone-group {
    display: flex !important;
    gap: 0 !important;
    position: relative;
}

.country-selector {
    background: #FFFFFF !important;
    border: 2px solid rgba(60, 110, 89, 0.2);
    border-radius: 12px 0 0 12px;
    border-right: none;
    padding: 16px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2c3e50 !important;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 90px;
    flex-shrink: 0;
}

.country-selector:focus {
    border-color: #3C6E59;
    background: #FFFFFF !important;
    color: #2c3e50 !important;
}

/* Ensure country selector validation states are also white */
.country-selector.error {
    border-color: #e74c3c !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
    color: #2c3e50 !important;
}

.country-selector.success {
    border-color: #27ae60 !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15) !important;
    color: #2c3e50 !important;
}

.phone-group input[type="tel"] {
    border-radius: 0 12px 12px 0 !important;
    border-left: none !important;
    flex: 1;
}

.phone-group input[type="tel"]:focus {
    border-left: none !important;
}

/* Form validation states */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
    animation: shake 0.5s ease-in-out;
    color: #2c3e50 !important;
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: #27ae60 !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15) !important;
    color: #2c3e50 !important;
}

/* Ensure placeholder text remains visible */
.form-group input.error::placeholder,
.form-group textarea.error::placeholder,
.form-group select.error::placeholder,
.form-group input.success::placeholder,
.form-group textarea.success::placeholder,
.form-group select.success::placeholder {
    color: rgba(44, 62, 80, 0.6) !important;
}

@keyframes shake {
    0%, 20%, 40%, 60%, 80% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
}

/* Enhanced notification styles for validation */
.notification-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 8px 32px rgba(243, 156, 18, 0.3);
}

.notification-info {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.3);
}

/* Country selector dropdown styling */
.country-selector option {
    padding: 8px 12px;
    font-size: 0.9rem;
}

/* Mobile notifications */
@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
        min-width: auto;
    }
    
    /* Mobile phone input adjustments */
    .country-selector {
        min-width: 70px;
        font-size: 0.85rem;
        padding: 14px 8px;
    }
    
    .phone-group {
        flex-direction: row !important;
    }
    
    .phone-group input[type="tel"] {
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a3528 0%, #2a4a38 100%);
    color: #ffffff;
    padding: 0;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        #C97C5D 0%, 
        #3C6E59 35%, 
        #EDF3EF 50%, 
        #3C6E59 65%, 
        #C97C5D 100%);
    box-shadow: 0 2px 10px rgba(201, 124, 93, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 124, 93, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(237, 243, 239, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(60, 110, 89, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 400px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #C97C5D, #d68a6f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(201, 124, 93, 0.3);
    transition: all 0.3s ease;
}

.footer-logo .logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 124, 93, 0.4);
}

.footer-logo .logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.footer-logo .logo span {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0;
}

.footer-logo p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: #C97C5D;
    margin-bottom: 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #C97C5D, #d68a6f);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: #C97C5D;
    transform: translateX(5px);
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #C97C5D;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: -12px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #C97C5D;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 124, 93, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #C97C5D;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Responsive Design - Tablet and smaller desktop */
@media (max-width: 1300px) {
    .nav-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        order: 1;
        z-index: 1002;
        flex-shrink: 0;
    }
    
    .logo {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        z-index: 1001;
        margin: 0 1rem;
    }
    
    .language-switcher {
        order: 3;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .cta-button {
        order: 4;
        flex-shrink: 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(237, 243, 239, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}

/* Main responsive breakpoint for mobile devices */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        gap: 0.5rem;
    }
    
    .mobile-menu-toggle {
        order: 1;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }
    
    .logo {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        z-index: 1001;
        font-size: 1rem;
        margin: 0 0.5rem;
    }
    
    .logo-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .language-switcher {
        order: 3;
        gap: 0.25rem;
        flex-shrink: 0;
    }
    
    .lang-btn {
        width: 30px;
        height: 20px;
    }
    
    .cta-button {
        order: 4;
        flex-shrink: 0;
    }
    
    .cta-button a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .flag {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
    
    .gallery-item {
        height: 400px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .floor-plan-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floor-plan-image {
        order: 2;
        margin-bottom: 2rem;
    }
    
    .floor-plan-info {
        order: 1;
    }
    
    .floor-plan-diagram {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .amenities-header {
        flex-direction: column;
        align-items: start;
        gap: 2rem;
    }
    
    .hero-info {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 1rem;
    }
    
    .carousel-btn.next {
        right: 1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
/* Responsive Footer */
@media (max-width: 1300px) {
    .footer-main {
        gap: 40px;
        padding: 60px 0 40px;
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 0 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-logo .logo {
        justify-content: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        margin-top: 80px;
    }
    
    .footer-main {
        padding: 40px 0 25px;
        gap: 40px;
    }
    
    .footer-links {
        gap: 35px;
    }
    
    .footer-logo .logo span {
        font-size: 24px;
    }
    
    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo .logo-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .floor-plan-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .floor-plan-image {
        order: 2;
    }
    
    .floor-plan-info {
        order: 1;
    }
    
    .floor-plan-diagram {
        max-width: 100%;
        padding: 1rem;
    }
    
    .floor-plan-svg {
        max-width: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .location-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
    
    .location-map {
        padding: 1.5rem;
    }
    
    .map-visual {
        height: 250px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    nav {
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
    }
    
    .logo {
        font-size: 0.9rem;
        margin: 0 0.25rem;
    }
    
    .logo-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .lang-btn {
        width: 28px;
        height: 18px;
    }
    
    .cta-button a {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
}

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

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

/* Scroll Animations */
section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}
