  /* Custom Font Declarations */
        @font-face {
            font-family: 'Carmen Sans';
            src: url('../fonts/carmen-sans-regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Gladesia';
            src: url('../fonts/Gladesia-Regular.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Gladesia';
            src: url('../fonts/Gladesia-Italic.otf') format('opentype');
            font-weight: 400;
            font-style: italic;
            font-display: swap;
        }

        /* Font Variables */
        :root {
            --font-primary: 'Carmen Sans', sans-serif;     /* Modern sans-serif for body text */
            --font-secondary: 'Gladesia', serif;           /* Elegant serif for headings */
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }

        .loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loading-logo {
            width: 120px;
            height: 120px;
            animation: spin 2s linear infinite;
        }

        .loading-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            background-color: #000;
            color: white;
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* Font Utility Classes */
        .font-carmen {
            font-family: var(--font-primary);
        }

        .font-gladesia {
            font-family: var(--font-secondary);
        }

        /* Header */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 200px;
            background: transparent;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 200px;
            right: 200px;
            height: 2px;
            background-color: #757558;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #d4af37, #f4e47c);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        .logo-subtitle {
            font-size: 12px;
            color: #ccc;
            letter-spacing: 2px;
        }

        .menu-btn {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            padding: 10px;
            transition: color 0.3s ease;
        }

        .menu-btn:hover {
            color: #d4af37;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.2);
            animation: slideIn 0.3s ease;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #d4af37;
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 300;
            color: white;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.2;
        }

        .modal-title .highlight {
            font-weight: bold;
            color: #d4af37;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .modal-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .modal-form-label {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .modal-form-input {
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 12px 0;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .modal-form-input:focus {
            outline: none;
            border-bottom-color: #d4af37;
        }

        .modal-form-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .modal-submit-btn {
            background: linear-gradient(45deg, #d4af37, #f4e47c);
            border: none;
            color: #000;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .modal-submit-btn:hover {
            background: linear-gradient(45deg, #f4e47c, #d4af37);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Modal Responsive */
        @media (max-width: 768px) {
            .modal-content {
                padding: 30px 20px;
                margin: 20px;
            }

            .modal-title {
                font-size: 1.5rem;
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 0 200px;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 60vh;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 0;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                        url('../img/hero_image.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 300;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.2;
            max-width: 800px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            color: white;
            margin-bottom: 40px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .cta-button {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* About Section */
        .about-section {
            padding: 50px 0px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #757558;
        }

        .about-title {
            font-size: 3rem;
            font-weight: 300;
            line-height: 1.2;
        }

        .about-title .highlight {
            font-weight: bold;
        }

        .about-description {
            text-align: justify;
            font-size: 16px;
            line-height: 1.6;
            color: #ccc;
            max-width: 400px;
        }

        /* Models Section */
        .models-section {
            padding: 100px 0px;
            background-color: #000;
            position: relative;
        }

        .models-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 200px;
            right: 200px;
            height: 2px;
            background-color: #757558;
        }

        .models-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .models-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 50px;
            color: #ccc;
        }

        .models-title .highlight {
            font-weight: bold;
            color: white;
        }

        .models-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 60px;
            gap: 30px;
        }

        .models-tabs {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            flex: 1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 10px;
        }

        .models-action-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 12px 20px;
            font-size: 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            min-width: fit-content;
        }

        .models-action-btn:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: #d4af37;
            color: #d4af37;
        }

        .action-icon {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .models-action-btn:hover .action-icon {
            transform: translateX(3px);
        }

        .model-tab {
            background: none;
            border: none;
            color: #666;
            font-size: 18px;
            padding: 10px 0;
            cursor: pointer;
            position: relative;
            transition: color 0.3s ease;
        }

        .model-tab.active {
            color: white;
        }

        .model-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #d4af37;
        }

        .model-tab:hover {
            color: #ccc;
        }

        .model-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .model-floorplan {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floorplan-image {
            width: 400px;
            height: 400px;
            position: relative;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            background-image: url('../img/modelo-a.webp'); /* Default image */
            opacity: 1;
            transition: opacity 0.3s ease-in-out;
        }

        .room {
            position: absolute;
            border: 1px solid #555;
        }

        .bedroom {
            top: 20px;
            left: 20px;
            width: 120px;
            height: 100px;
            background: rgba(212, 175, 55, 0.2);
        }

        .bathroom {
            top: 20px;
            right: 20px;
            width: 80px;
            height: 60px;
            background: rgba(100, 150, 200, 0.2);
        }

        .living-room {
            bottom: 60px;
            left: 20px;
            width: 160px;
            height: 120px;
            background: rgba(150, 200, 150, 0.2);
        }

        .kitchen {
            bottom: 60px;
            right: 20px;
            width: 80px;
            height: 120px;
            background: rgba(200, 150, 100, 0.2);
        }

        .balcony {
            bottom: 20px;
            left: 20px;
            right: 20px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
        }

        .model-specs {
            display: flex;
            flex-direction: column;
            gap: 30px;
            opacity: 1;
            transition: opacity 0.3s ease-in-out;
        }

        /* Animation classes for model switching */
        .floorplan-image.fade-out,
        .model-specs.fade-out {
            opacity: 0;
        }

        .floorplan-image.fade-in,
        .model-specs.fade-in {
            opacity: 1;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #333;
        }

        .spec-label {
            font-size: 18px;
            color: white;
        }

        .spec-value {
            font-size: 18px;
            color: white;
            font-weight: bold;
        }

        .download-btn {
            background: none;
            border: 2px solid #d4af37;
            color: white;
            padding: 15px 30px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .download-btn:hover {
            background: #d4af37;
            color: #000;
        }

        .download-icon {
            font-size: 18px;
            font-weight: bold;
        }

        /* Amenities Section */
        .amenities-section {
            padding: 100px 200px;
            background-color: #000;
        }

        .amenities-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .amenities-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 80px;
            color: #ccc;
            line-height: 1.2;
        }

        .amenities-title .highlight {
            font-weight: bold;
            color: white;
        }

        .building-images {
            width: 100%;
            display: flex;
            justify-content: center;
            margin: 0 auto;
        }

        .amenities-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            object-fit: cover;
        }

        /* Carousel Section */
        .carousel-section {
            padding: 200px 200px;
            background-color: #000;
            position: relative;
        }
        .carousel-section::after {
            margin-top:100px;
            content: '';
            position: absolute;
            bottom: 0;
            left: 200px;
            right: 200px;
            height: 2px;
            background-color: #757558;
        }

        .carousel-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        /* Swiper Styles */
        .swiper {
            width: 100%;
            height: 500px;
            margin: 0 auto;
        }

        .swiper-slide {
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .swiper-slide.slide-1 {
            background-image: url('../img/17.webp');
            background-color: #222;
        }

        .swiper-slide.slide-2 {
            background-image: url('../img/18.webp');
            background-color: #222;
        }

        .swiper-slide.slide-3 {
            background-image: url('../img/16.webp');
            background-color: #222;
        }

        /* Static overlay content that doesn't move */
        .carousel-static-content {
            position: absolute;
            top: 85%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            pointer-events: none;
            text-align: center;
        }

        .carousel-logo {
            display: block;
            width: 120px;
            height: 120px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 180px;
            margin-bottom:100px;
            border: 3px solid #d4af37;
        }

        .carousel-logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #d4af37, #f4e47c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #000;
        }

        .carousel-text {
            font-size: 3rem;
            font-weight: 300;
            font-style: italic;
            color: white;
            line-height: 1.2;
            max-width: 800px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        /* Custom Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            background: rgba(0,0,0,0.5);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            margin-top: -30px;
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(0,0,0,0.8);
            border-color: #d4af37;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            color: white;
            font-weight: bold;
        }

        /* Custom Swiper Pagination */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.3);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: #d4af37;
            transform: scale(1.2);
        }

        .carousel-text {
            font-size: 3rem;
            font-weight: 300;
            font-style: italic;
            color: white;
            line-height: 1.2;
            max-width: 800px;
            text-align: center;
        }

        /* Map Section */
        .map-section {
            padding: 100px 200px;
            background-color: #000;
            position: relative;
        }
        .map-section::after {
            margin-top:100px;
            content: '';
            position: absolute;
            bottom: 0;
            left: 200px;
            right: 200px;
            height: 2px;
            background-color: #757558;
        }

        .map-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .map-title {
            font-size: 3rem;
            font-weight: 300;
            color: white;
            line-height: 1.2;
        }

        .map-desc{
            margin-bottom: 60px;
        }

        .map-title .highlight {
            font-weight: bold;
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            height: 700px;
            overflow: hidden;
            background: #333;
            border: 2px solid #444;
        }

        .map-iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(100%) invert(92%) contrast(83%);
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            pointer-events: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
        }

        .map-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 10;
        }

        .map-control-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .map-control-btn:hover {
            background: #d4af37;
            color: white;
        }

        

        /* Contact Section */
        .contact-section {
            padding: 100px 200px;
            background-color: #000;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
        }

    

        .contact-title {
            font-size: 3rem;
            font-weight: 300;
            color: white;
            line-height: 1.2;
            margin-bottom: 40px;
        }

        .contact-title .highlight {
            font-weight: bold;
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 300;
            color: white;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .form-title .highlight {
            font-weight: bold;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .form-input {
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 12px 0;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-bottom-color: #d4af37;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .submit-btn {
            background: transparent;
            color: white;
            font-size: 16px;
            border:none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .submit-btn:hover {
            color: #d4af37;
        }

        .submit-icon {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover .submit-icon {
            transform: translateX(5px);
        }

        /* Footer Section */
        .footer {
            background: #E5C380;
            color: #000;
            padding: 100px 200px 50px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-main {
            display: flex;
            flex-direction: column;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: flex-start;
        }

        .footer-title-section {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 8.2rem;
            font-weight: bold;
            line-height: 0.85;
            margin-bottom: 0;
        }

        .footer-subtitle {
            font-size: 7.2rem;
            font-weight: 300;
            font-style: italic;
            line-height: 0.85;
            margin-top: 35px;
        }
        .department{
            margin-left:300px;
            font-size: 30px;
            font-style: normal;
            color:black;
        }

        .footer-contact-section {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: 60px;
            padding-top: 20px;
            width: 100%;
            padding-left: 100px;
            padding-right:100px;
        }

        .footer-social {
            margin-bottom: 0;
        }

        .footer-social-title {
            font-size: 11px;
            margin-bottom: 8px;
            font-weight: 400;
            line-height: 1.2;
        }

        .footer-social-links {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .footer-social-link {
            color: #000;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }

        .footer-social-link:hover {
            opacity: 0.7;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-contact-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .footer-contact-label {
            font-size: 10px;
            font-weight: 400;
            opacity: 0.8;
            line-height: 1.1;
        }

        .footer-contact-value {
            font-size: 16px;
            font-weight: 600;
        }

        .footer-right {
            padding-left:100px;
            padding-right:100px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }

        .footer-cta-btn {
            background: transparent;
            border: 1px solid #000;
            color: #000;
            padding: 10px 16px;
            font-size: 13px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 30px;
        }

        .footer-cta-btn:hover {
            background: #000;
            color: #d4af37;
        }

        .footer-cta-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.2;
            text-align: left;
            max-width: 100%;
        }

        .footer-form {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
            width: 100%;
        }

        .footer-form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-form-label {
            font-size: 10px;
            font-weight: 600;
            color: #000;
        }

        .footer-form-input {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            color: #000;
            padding: 6px 0;
            font-size: 13px;
            transition: border-color 0.3s ease;
        }

        .footer-form-input:focus {
            outline: none;
            border-bottom-color: #000;
        }

        .footer-form-input::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        .footer-info-btn {
            background: transparent;
            border: 1px solid #000;
            color: #000;
            padding: 10px 16px;
            font-size: 13px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-info-btn:hover {
            background: #000;
            color: #d4af37;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-legal-link {
            color: #000;
            text-decoration: none;
            font-size: 11px;
            transition: opacity 0.3s ease;
        }

        .footer-legal-link:hover {
            opacity: 0.7;
        }

        .footer-copyright {
            font-size: 11px;
            color: #000;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .header {
                padding: 20px 100px;
            }

            .header::after {
                left: 100px;
                right: 100px;
            }

            .hero {
                padding: 0 100px;
            }

            .about-section {
                padding: 80px 100px;
                gap: 60px;
            }

            .models-section {
                padding: 80px 100px;
            }

            .amenities-section {
                padding: 80px 100px;
            }

            .amenities-title {
                font-size: 2.8rem;
            }

            .carousel-section {
                padding: 80px 100px;
            }

            .swiper {
                height: 400px;
            }

            .carousel-text {
                font-size: 2.5rem;
            }

            .carousel-logo {
                width: 100px;
                height: 100px;
            }

            .carousel-logo-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .map-section {
                padding: 80px 100px;
            }

            .map-title {
                font-size: 2.5rem;
            }

            .map-wrapper {
                height: 400px;
            }

            

            .contact-section {
                padding: 80px 100px;
            }

            .contact-container {
                gap: 60px;
            }

            .contact-title {
                font-size: 2.5rem;
            }

            .contact-right {
                padding: 30px;
            }

            .footer {
                padding: 60px 100px 30px;
            }

            .footer-main {
                gap: 60px;
            }

            .footer-title {
                font-size: 3rem;
            }

            .footer-subtitle {
                font-size: 2rem;
            }
        }

        @media (max-width: 992px) {
            .header {
                padding: 20px 50px;
            }

            .header::after {
                left: 50px;
                right: 50px;
            }

            .hero {
                padding: 0 50px;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }

            .hero-image-container {
                height: 50vh;
            }

            .about-section {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 70px 50px;
                text-align: center;
            }

            .about-title {
                font-size: 2.8rem;
            }

            .models-title {
                font-size: 2.8rem;
            }

            .model-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .amenities-title {
                font-size: 2.8rem;
            }

            .carousel-section {
                padding: 70px 50px;
            }

            .carousel-text {
                font-size: 2.2rem;
            }

            .map-title {
                font-size: 2.2rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-title {
                font-size: 2.2rem;
                text-align: center;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .footer-title {
                font-size: 2.5rem;
            }

            .footer-subtitle {
                font-size: 1.8rem;
            }

            .footer-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .carousel-logo {
                display: none;
            }
            .header {
                padding: 15px 20px;
            }

            .header::after {
                left: 20px;
                right: 20px;
            }

            .hero {
                padding: 0 20px;
            }

            .logo-text {
                font-size: 20px;
            }

            .logo-subtitle {
                font-size: 10px;
            }

            .menu-btn {
                font-size: 16px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                padding: 0 20px;
                margin-bottom: 30px;
            }

            .hero-image-container {
                height: 45vh;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 16px;
            }

            .about-section {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 60px 20px;
                text-align: center;
            }

            .about-title {
                font-size: 2.5rem;
            }

            .about-description {
                max-width: 100%;
            }

            .models-section {
                padding: 60px 20px;
            }

            .amenities-section {
                padding: 60px 20px;
            }

            .amenities-title {
                font-size: 2.5rem;
                margin-bottom: 50px;
            }

            .amenities-image {
                border-radius: 10px;
            }

            .carousel-section {
                padding: 60px 20px;
            }

            .swiper {
                height: 300px;
            }

            .carousel-text {
                font-size: 1.8rem;
                padding: 0 20px;
            }

            .carousel-logo {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }

            .carousel-logo-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .carousel-nav {
                width: 50px;
                height: 50px;
            }

            .carousel-nav.prev {
                left: 15px;
            }

            .carousel-nav.next {
                right: 15px;
            }

            .models-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }

            .models-header {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }

            .models-tabs {
                gap: 10px;
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }

            .models-action-btn {
                align-self: flex-end;
                padding: 10px 16px;
                font-size: 13px;
            }

            .model-tab {
                font-size: 16px;
                white-space: nowrap;
                min-width: 80px;
            }

            .model-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .model-floorplan {
                height: 300px;
                padding: 20px;
            }

            .floorplan-image {
                width: 250px;
                height: 250px;
            }

            .spec-item {
                padding: 15px 0;
            }

            .spec-label,
            .spec-value {
                font-size: 16px;
            }

            .download-btn {
                padding: 12px 20px;
                font-size: 14px;
            }

            .contact-section {
                padding: 60px 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-title {
                font-size: 1.8rem;
                text-align: center;
            }

            .contact-right {
                padding: 25px;
            }

            .form-title {
                font-size: 1.3rem;
            }


            .footer {
                padding: 50px 20px 25px;
            }

            .footer-main {
                gap: 40px;
            }

            .footer-title {
                font-size: 2rem;
            }

            .footer-subtitle {
                font-size: 1.5rem;
            }

            .footer-cta-title {
                font-size: 1.3rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .footer-legal {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 15px 15px;
            }

            .header::after {
                left: 15px;
                right: 15px;
            }

            .hero {
                padding: 0 15px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .logo-text {
                font-size: 18px;
            }

            .logo-subtitle {
                font-size: 9px;
            }

            .hero-content h1 {
                font-size: 2rem;
                line-height: 1.1;
            }

            .hero-image-container {
                height: 40vh;
            }

            .cta-button {
                padding: 10px 25px;
                font-size: 14px;
            }

            .about-section {
                padding: 50px 15px;
            }

            .about-title {
                font-size: 2rem;
            }

            .about-description {
                font-size: 14px;
            }

            .models-section {
                padding: 50px 15px;
            }

            .amenities-section {
                padding: 50px 15px;
            }

            .amenities-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .amenities-image {
                border-radius: 8px;
            }

            .carousel-section {
                padding: 50px 15px;
            }

            .swiper {
                height: 250px;
            }

            .carousel-text {
                font-size: 1.5rem;
                padding: 0 15px;
            }

            .carousel-logo {
                width: 70px;
                height: 70px;
                margin-bottom: 15px;
            }

            .carousel-logo-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
            }

            .carousel-nav.prev {
                left: 10px;
            }

            .carousel-nav.next {
                right: 10px;
            }

            .carousel-dots {
                gap: 10px;
                margin-top: 20px;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }

            .map-section {
                padding: 50px 15px;
            }

            .map-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .map-wrapper {
                height: 250px;
            }

            

            .location-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                margin-bottom: 15px;
            }

            .location-title {
                font-size: 1rem;
            }

            .location-description {
                font-size: 12px;
            }

            .models-title {
                font-size: 2rem;
            }

            .models-header {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .models-tabs {
                gap: 8px;
            }

            .models-action-btn {
                align-self: center;
                padding: 8px 14px;
                font-size: 12px;
            }

            .model-tab {
                font-size: 14px;
                padding: 8px 0;
                min-width: 70px;
            }

            .model-floorplan {
                height: 250px;
                padding: 15px;
            }

            .floorplan-image {
                width: 200px;
                height: 200px;
            }

            .room.bedroom {
                width: 90px;
                height: 80px;
            }

            .room.bathroom {
                width: 60px;
                height: 50px;
            }

            .room.living-room {
                width: 120px;
                height: 90px;
            }

            .room.kitchen {
                width: 60px;
                height: 90px;
            }

            .spec-item {
                padding: 12px 0;
            }

            .spec-label,
            .spec-value {
                font-size: 14px;
            }

            .download-btn {
                padding: 10px 15px;
                font-size: 12px;
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }

            .contact-section {
                padding: 50px 15px;
            }

            .contact-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .contact-right {
                padding: 20px;
            }

            .form-title {
                font-size: 1.2rem;
                margin-bottom: 25px;
            }

            .contact-item {
                font-size: 14px;
                justify-content: center;
            }

            .contact-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .form-input {
                font-size: 14px;
                padding: 10px 0;
            }

            .submit-btn {
                padding: 12px 25px;
                font-size: 14px;
            }

            .footer {
                padding: 40px 15px 20px;
            }

            .footer-title {
                font-size: 2rem;
            }

            .footer-subtitle {
                font-size: 2rem;
            }
            .department{
                margin-left:100px;
                font-size: 14px;
                font-style: normal;
                color:black;
            }

            .footer-cta-title {
                font-size: 1.1rem;
            }

            .footer-contact-value {
                font-size: 14px;
            }

            .footer-social-link {
                font-size: 14px;
            }

            .footer-legal {
                gap: 15px;
                justify-content: center;
            }
        }

        /* Landscape orientation for small devices */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                height: 120vh;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-image-container {
                height: 70vh;
            }
        }

        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-button svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
            }
            50% {
                box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            }
            100% {
                box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
            }
        }

        /* WhatsApp Button Responsive */
        @media (max-width: 768px) {
            .whatsapp-button {
                width: 55px;
                height: 55px;
                bottom: 15px;
                right: 15px;
            }

            .whatsapp-button svg {
                width: 28px;
                height: 28px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-button {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }

            .whatsapp-button svg {
                width: 24px;
                height: 24px;
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            animation-delay: 0.3s;
        }

        .cta-button {
            animation-delay: 0.6s;
        }