@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%; /* Ensure full width */
}

[data-aos] {
    overflow: hidden; /* Contain animations within layout */
}

html {
scroll-behavior: smooth;
scroll-padding-top: 2rem;
}

body {
font-family: 'Cormorant Garamond', serif;
}

.section-height {
min-height: 100vh;
}

.text-stroke {
-webkit-text-stroke: 1px #AEC4D6;
color: transparent;
}

.property-card:hover .property-overlay {
opacity: 1;
}

.property-card:hover img {
transform: scale(1.05);
}

.side-nav-link {
writing-mode: vertical-rl;
text-orientation: mixed;
transform: rotate(180deg);
transition: all 0.3s ease;
}

.side-nav-link:hover {
color: #AEC4D6;
letter-spacing: 2px;
}

.active-nav {
color: #AEC4D6;
font-weight: 600;
}

.scroll-indicator {
animation: bounce 2s infinite;
}

@keyframes bounce {

0%,
20%,
50%,
80%,
100% {
    transform: translateY(0);
}

40% {
    transform: translateY(-20px);
}

60% {
    transform: translateY(-10px);
}
}

.cursor-follow {
width: 40px;
height: 40px;
border: 2px solid #AEC4D6;
border-radius: 50%;
position: fixed;
transform: translate(-50%, -50%);
pointer-events: none;
z-index: 9999;
mix-blend-mode: difference;
transition: transform 0.2s ease;
display: none;
}

@media (min-width: 1024px) {
.cursor-follow {
    display: block;
}
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 1rem;
height: 600px;
}

.gallery-item:nth-child(1) {
grid-column: 1 / 2;
grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
grid-column: 2 / 3;
grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
grid-column: 3 / 4;
grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
grid-column: 2 / 4;
grid-row: 2 / 3;
}

@media (max-width: 768px) {
.gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
    height: auto;
}

.gallery-item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
}
}

/* Filter Styles */
.filter-container {
transition: all 0.5s ease;
display: none;
}

@media (max-width: 768px) {
.filter-container.expanded {
    padding: 1rem;
}

.filter-container .grid {
    gap: 1.5rem;
}
}

.filter-container.expanded {
display: block;
animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(-10px);
}

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

.checkbox-container {
display: flex;
align-items: center;
cursor: pointer;
}

.custom-checkbox {
width: 20px;
height: 20px;
border: 1px solid #AEC4D6;
display: inline-block;
position: relative;
margin-right: 10px;
transition: all 0.2s ease;
}

.checkbox-container input:checked+.custom-checkbox {
background-color: #AEC4D6;
}

.checkbox-container input:checked+.custom-checkbox:after {
content: '';
position: absolute;
left: 7px;
top: 3px;
width: 5px;
height: 10px;
border: solid #030611;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}

.checkbox-container input {
position: absolute;
opacity: 0;
cursor: pointer;
}

/* Price Range Slider */
.noUi-connect {
background: #AEC4D6;
}

.noUi-handle {
border: 1px solid #AEC4D6;
background: #F9F8FF;
box-shadow: none;
cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
display: none;
}

.noUi-horizontal {
height: 8px;
}

.noUi-horizontal .noUi-handle {
width: 20px;
height: 20px;
border-radius: 50%;
top: -7px;
right: -10px;
}

/* Property Grid Animation */
.property-grid {
transition: opacity 0.5s ease;
}

.property-card {
transition: all 0.5s ease;
}

.property-card.hidden {
opacity: 0;
transform: scale(0.8);
height: 0;
margin: 0;
padding: 0;
overflow: hidden;
}

/* Filter Button */
.filter-button {
transition: all 0.3s ease;
}

.filter-button:hover {
background-color: #AEC4D6;
color: #030611;
}

/* Filter Tags */
.filter-tag {
display: inline-flex;
align-items: center;
background-color: #AEC4D6;
color: #030611;
padding: 0.25rem 0.75rem;
border-radius: 2rem;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
font-size: 0.875rem;
transition: all 0.3s ease;
}

.filter-tag:hover {
background-color: #030611;
color: #F9F8FF;
}

.filter-tag .close-icon {
margin-left: 0.5rem;
font-size: 0.75rem;
}

/* Active Filters Container */
#active-filters {
display: flex;
flex-wrap: wrap;
align-items: center;
min-height: 40px;
padding: 0.5rem 0;
}

/* Right Side Menu */
.right-side-menu {
position: fixed;
top: 0;
right: 0;
height: 100vh;
width: 320px;
background-color: #030611;
z-index: 60;
transform: translateX(100%);
transition: transform 0.5s ease;
overflow-y: auto;
padding: 2rem;
}

.right-side-menu.open {
transform: translateX(0);
}

.right-menu-toggle {
position: fixed;
top: 2rem;
right: 2rem;
z-index: 61;
width: 50px;
height: 50px;
background-color: #030611;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: all 0.3s ease;
}

.right-menu-toggle:hover {
background-color: #AEC4D6;
color: #030611;
}

.menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 59;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.menu-overlay.active {
opacity: 1;
visibility: visible;
}

.property-option {
padding: 1rem 0;
border-bottom: 1px solid rgba(174, 196, 214, 0.2);
transition: all 0.3s ease;
}

.property-option:hover {
border-color: #AEC4D6;
}

.property-option-title {
font-size: 1.25rem;
color: #F9F8FF;
margin-bottom: 0.5rem;
font-weight: 300;
}

.property-option-items {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}

.property-option-item {
padding: 0.5rem 1rem;
background-color: transparent;
border: 1px solid #AEC4D6;
color: #AEC4D6;
transition: all 0.3s ease;
font-size: 0.875rem;
cursor: pointer;
}

.property-option-item:hover,
.property-option-item.active {
background-color: #AEC4D6;
color: #030611;
}

/* Projects Sections Styles */
.project-card {
position: relative;
overflow: hidden;
height: 450px;
}

.project-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.7s ease;
}

.project-card:hover img {
transform: scale(1.05);
}

.project-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(3, 6, 17, 0.9), rgba(3, 6, 17, 0) 100%);
padding: 2rem;
transition: all 0.5s ease;
}

.project-card:hover .project-overlay {
padding-bottom: 3rem;
}

.hot-badge {
position: absolute;
top: 1rem;
right: 1rem;
background-color: #AEC4D6;
color: #030611;
padding: 0.5rem 1rem;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 2px;
z-index: 10;
}

.launch-countdown {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.countdown-item {
display: flex;
flex-direction: column;
align-items: center;
background-color: rgba(174, 196, 214, 0.2);
padding: 0.5rem;
min-width: 60px;
}

.countdown-number {
font-size: 1.5rem;
font-weight: 600;
color: #AEC4D6;
}

.countdown-label {
font-size: 0.75rem;
text-transform: uppercase;
color: #F9F8FF;
}

.project-progress {
display: none;
width: 100%;
height: 4px;
background-color: rgba(249, 248, 255, 0.2);
margin-top: 1rem;
position: relative;
}

.project-progress-bar {
position: absolute;
top: 0;
left: 0;
height: 100%;
background-color: #AEC4D6;
}

.project-stats {
display: flex;
gap: 1.5rem;
margin-top: 1rem;
}

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

.project-stat-value {
font-size: 1.25rem;
color: #AEC4D6;
}

.project-stat-label {
font-size: 0.75rem;
text-transform: uppercase;
color: #F9F8FF;
opacity: 0.7;
}

.section-tabs {
display: flex;
border-bottom: 1px solid rgba(174, 196, 214, 0.3);
margin-bottom: 2rem;
}

.section-tab {
padding: 1rem 2rem;
font-size: 1.25rem;
color: #030611;
cursor: pointer;
position: relative;
transition: all 0.3s ease;
}

.section-tab.active {
color: #AEC4D6;
}

.section-tab.active::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 2px;
background-color: #AEC4D6;
}

@media (max-width: 640px) {
.section-tab {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}
}

.tab-content {
display: none;
}

.tab-content.active {
display: block;
}

.swiper-container {
width: 100%;
overflow: hidden;
position: relative;
}

.swiper-wrapper {
display: flex;
transition: transform 0.5s ease;
}

.swiper-slide {
flex-shrink: 0;
width: 100%;
}

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

.swiper-pagination-bullet {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(3, 6, 17, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
background-color: #AEC4D6;
transform: scale(1.2);
}

.swiper-button-prev,
.swiper-button-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background-color: rgba(3, 6, 17, 0.7);
color: #F9F8FF;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
}

.swiper-button-prev {
left: 1rem;
}

.swiper-button-next {
right: 1rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
background-color: #AEC4D6;
color: #030611;
}

/* Logo styles */
.logo-container {
max-width: 300px;
margin: 0 auto;
}

.logo-container img {
width: 100%;
height: auto;
}

@media (max-width: 768px) {
.project-card {
    height: 350px;
}

.launch-countdown {
    gap: 0.5rem;
}

.countdown-item {
    min-width: 50px;
    padding: 0.25rem;
}

.countdown-number {
    font-size: 1.25rem;
}

.section-tab {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.logo-container {
    max-width: 200px;
}
}

/* Responsive Right Side Menu */
@media (max-width: 768px) {
.right-side-menu {
    width: 280px;
}

.property-option-title {
    font-size: 1.1rem;
}

.property-option-items {
    gap: 0.35rem;
}

.property-option-item {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
}
}

/* Responsive Projects Section */
@media (max-width: 640px) {
.project-card {
    height: 350px;
}

.project-overlay {
    padding: 1.5rem;
}

.project-card:hover .project-overlay {
    padding-bottom: 2rem;
}

.project-stat-value {
    font-size: 1.1rem;
}

.project-stat-label {
    font-size: 0.7rem;
}
}

/* Top Menu Styles */
.top-menu {
display: flex;
align-items: center;
gap: 1.5rem;
}

.top-menu-item {
color: #F9F8FF;
font-size: 0.9rem;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.3s ease;
white-space: nowrap;
}

.top-menu-item:hover {
color: #AEC4D6;
}

.whatsapp-icon {
display: flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
background-color: #25D366;
color: white;
border-radius: 50%;
transition: all 0.3s ease;
}

.whatsapp-icon:hover {
transform: scale(1.1);
}

@media (max-width: 768px) {
.top-menu {
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.top-menu::-webkit-scrollbar {
    display: none;
}

.top-menu-item {
    font-size: 0.8rem;
}
}

/* Add these styles to the existing style section */
.mobile-nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(3, 6, 17, 0.95);
z-index: 100;
display: none;
}

.mobile-nav-overlay.active {
display: block;
}

.mobile-nav-content {
padding: 5rem 2rem 2rem;
}

.mobile-nav-close {
position: absolute;
top: 2rem;
right: 2rem;
color: #F9F8FF;
font-size: 1.5rem;
cursor: pointer;
}

.mobile-hero-controls {
position: absolute;
top: 2rem;
left: 0;
width: 100%;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 30;
}

.mobile-logo {
max-width: 150px;
}

.mobile-controls-right {
display: flex;
align-items: center;
gap: 1rem;
}

/* Enhanced Mobile Menu Styles */
.mobile-menu-item {
display: flex;
align-items: center;
padding: 0.75rem 1.5rem;
color: #F9F8FF;
font-size: 1.25rem;
letter-spacing: 1px;
transition: all 0.3s ease;
border-left: 3px solid transparent;
position: relative;
overflow: hidden;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
color: #AEC4D6;
border-left: 3px solid #AEC4D6;
padding-left: 2rem;
background-color: rgba(174, 196, 214, 0.1);
}

.mobile-menu-icon {
display: flex;
align-items: center;
justify-content: center;
width: 2.5rem;
margin-right: 1rem;
font-size: 1.1rem;
color: #AEC4D6;
}

.mobile-menu-text {
font-weight: 300;
text-transform: uppercase;
}

.mobile-nav-close {
position: absolute;
top: 2rem;
right: 2rem;
color: #F9F8FF;
font-size: 1.5rem;
cursor: pointer;
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
background-color: rgba(174, 196, 214, 0.1);
}

.mobile-nav-close:hover {
background-color: #AEC4D6;
color: #030611;
transform: rotate(90deg);
}

.mobile-nav-content {
padding: 5rem 2rem 2rem;
height: 100%;
display: flex;
flex-direction: column;
}

.mobile-social-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
background-color: rgba(174, 196, 214, 0.2);
color: #F9F8FF;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.mobile-social-icon:hover {
transform: translateY(-3px);
background-color: #AEC4D6;
color: #030611;
}

/* Animation for mobile menu items */
.mobile-nav-overlay.active .mobile-menu-item {
animation: slideInRight 0.5s forwards;
opacity: 0;
}

.mobile-nav-overlay.active .mobile-menu-item:nth-child(1) {
animation-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-menu-item:nth-child(2) {
animation-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-menu-item:nth-child(3) {
animation-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-menu-item:nth-child(4) {
animation-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-menu-item:nth-child(5) {
animation-delay: 0.5s;
}

.mobile-nav-overlay.active .mobile-menu-item:nth-child(6) {
animation-delay: 0.6s;
}

@keyframes slideInRight {
from {
    transform: translateX(-20px);
    opacity: 0;
}

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

/* Improved mobile overlay animation */
.mobile-nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(3, 6, 17, 0.98);
z-index: 100;
opacity: 0;
visibility: hidden;
transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.active {
opacity: 1;
visibility: visible;
}

/* Logo Slider Animation */
@keyframes slide {
0% {
    transform: translateX(0);
}

100% {
    transform: translateX(-50%);
}
}

.logos-slide-track {
animation: slide 30s linear infinite;
width: max-content;
}

.logo-slide {
transition: all 0.3s ease;
}

.logo-slide:hover {
transform: scale(1.1);
}


/* Team Section Styles */
.team-card {
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
position: relative;
overflow: hidden;
background: white;
border-radius: 0.5rem;
}

.team-card:hover {
transform: translateY(-8px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.team-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #AEC4D6 0%, #030611 100%);
transform: scaleX(0);
transition: transform 0.3s ease;
}

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

.team-photo {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #AEC4D6;
transition: all 0.3s ease;
}

.team-card:hover .team-photo {
border-color: #030611;
transform: scale(1.05);
}

.expertise-badge {
background: linear-gradient(135deg, #AEC4D6 0%, #8BB4CC 100%);
color: #030611;
padding: 0.25rem 0.75rem;
border-radius: 1rem;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.language-tag {
background-color: rgba(174, 196, 214, 0.2);
color: #030611;
padding: 0.25rem 0.5rem;
border-radius: 0.5rem;
font-size: 0.75rem;
margin: 0.125rem;
display: inline-block;
}

.contact-button {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.contact-button::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;
}

.contact-button:hover::before {
left: 100%;
}

.whatsapp-btn {
background-color: #25D366;
color: white;
}

.whatsapp-btn:hover {
background-color: #128C7E;
transform: translateY(-2px);
}

.call-btn {
background-color: #030611;
color: white;
}

.call-btn:hover {
background-color: #AEC4D6;
color: #030611;
transform: translateY(-2px);
}

.stats-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.5rem;
margin: 1rem 0;
}

.stat-item {
text-align: center;
padding: 0.5rem;
background: rgba(174, 196, 214, 0.1);
border-radius: 0.5rem;
}

.stat-number {
font-size: 2.25rem;
font-weight: 600;
color: #AEC4D6;
}

.stat-label {
font-size: 0.75rem;
color: #6B7280;
text-transform: uppercase;
}

/* Team Slider Styles */
.team-slider-container {
position: relative;
overflow: hidden;
}

.team-slider-wrapper {
display: flex;
transition: transform 0.5s ease;
}

.team-slide {
flex-shrink: 0;
width: 100%;
padding: 0 1rem;
}

@media (min-width: 768px) {
.team-slide {
    width: 50%;
}
}

@media (min-width: 1024px) {
.team-slide {
    width: 33.333%;
}
}

.team-nav-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background-color: rgba(3, 6, 17, 0.8);
color: #F9F8FF;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
opacity: 0.7;
}

.team-nav-button:hover {
background-color: #AEC4D6;
color: #030611;
opacity: 1;
transform: translateY(-50%) scale(1.1);
}

.team-nav-prev {
left: 3px;
}

.team-nav-next {
right: 3px;
}

.team-slider-dots {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-top: 2rem;
}

.team-slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(3, 6, 17, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.team-slider-dot.active {
background-color: #AEC4D6;
transform: scale(1.2);
}

@media (max-width: 768px) {
.team-nav-button {
    display: none;
}
}

    /* Blog Section Styles */
.blog-card {
position: relative;
overflow: hidden;
background: white;
border-radius: 0.5rem;
transition: all 0.5s ease;
border: 1px solid #e5e7eb;
}

.blog-card:hover {
transform: translateY(-8px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.blog-card img {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.7s ease;
}

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

.blog-badge {
position: absolute;
top: 1rem;
left: 1rem;
padding: 0.5rem 1rem;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
z-index: 10;
border-radius: 0.25rem;
}

.badge-news {
background-color: #EF4444;
color: white;
}

.badge-article {
background-color: #3B82F6;
color: white;
}

.badge-launch {
background-color: #10B981;
color: white;
}

.blog-content {
padding: 1.5rem;
}

.blog-meta {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
font-size: 0.875rem;
color: #6B7280;
}

.blog-title {
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 0.75rem;
color: #030611;
transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
color: #AEC4D6;
}

.blog-excerpt {
color: #6B7280;
margin-bottom: 1rem;
line-height: 1.6;
}

.blog-read-more {
color: #AEC4D6;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.875rem;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.blog-read-more:hover {
color: #030611;
}

.blog-read-more i {
transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i {
transform: translateX(5px);
}

/* Back to Top Button */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #AEC4D6 0%, #8BB4CC 100%);
    color: #030611;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 50;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #AEC4D6;
    color: #030611;
    transform: translateY(-5px);
}

/* Show only on mobile devices */
@media (max-width: 768px) {

    /* Adjust back-to-top button position when mobile buttons are visible */
    .back-to-top {
        bottom: 5rem !important;
    }

}

/* Mobile Sticky Contact Buttons */
.mobile-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 60;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(174, 196, 214, 0.3);
    padding: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-contact-buttons .contact-buttons-container {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-contact-btn::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.6s;
}

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

.mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-call-btn {
    background: linear-gradient(135deg, #030611 0%, #1a1f2e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(3, 6, 17, 0.3);
}

.mobile-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 6, 17, 0.4);
}

.mobile-contact-btn i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-contact-buttons {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-contact-btn {
        padding: 0.75rem 0.75rem;
        font-size: 0.8125rem;
    }

    .mobile-contact-btn i {
        margin-right: 0.375rem;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer-section {
    position: relative;
}

/*.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23AEC4D6" opacity="0.05"/><circle cx="75" cy="75" r="0.5" fill="%23AEC4D6" opacity="0.05"/><circle cx="50" cy="10" r="0.3" fill="%23AEC4D6" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    opacity: 0.3;
}*/

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

.footer-heading {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #AEC4D6 0%, #8BB4CC 100%);
    transition: width 0.3s ease;
}

.footer-link {
    display: block;
    padding: 0.375rem 0;
    color: #9CA3AF;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.footer-link:hover {
    color: #AEC4D6;
    padding-left: 0.5rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #AEC4D6;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 0.25rem;
}

.legal-link {
    display: inline-block;
    padding: 0.375rem 1rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    border-right: 1px solid #4B5563;
}

.legal-link:last-child {
    border-right: none;
}

.legal-link:hover {
    color: #AEC4D6;
}

.social-icon-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
}

.social-icon-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #AEC4D6 0%, #8BB4CC 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon-footer:hover::before {
    opacity: 1;
}

.social-icon-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(174, 196, 214, 0.3);
}

.social-icon-footer i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-icon-footer:hover i {
    color: #030611;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .footer-heading::after {
        width: 30px;
    }

    .legal-link {
        display: block;
        border-right: none;
        border-bottom: 1px solid #4B5563;
        padding: 0.5rem 0;
    }

    .legal-link:last-child {
        border-bottom: none;
    }
}

.contact-buttons-container {
    display: flex;
    gap: 10px;
    background: rgba(3, 6, 17, 0.95);
    padding: 8px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(174, 196, 214, 0.2);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.mobile-whatsapp-btn {
    background: #25D366;
}

.mobile-whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.mobile-call-btn {
    background: #AEC4D6;
    color: #030611;
}

.mobile-call-btn:hover {
    background: #9ab3cc;
    transform: translateY(-2px);
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0;
    }

    .footer-heading {
        font-size: 1.125rem;
    }

    .social-icon-footer {
        width: 36px;
        height: 36px;
    }

    .contact-buttons-container {
        padding: 6px;
    }

    .mobile-contact-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.1rem;
    }
}
