.container-fluid.w90.padtop20 {
  max-width: 1290px;
  margin: 0 auto;
  padding: 30px 40px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  
}

/* Responsive adjustments for tablets */
@media (max-width: 992px) {
  .container-fluid.w90.padtop20 {
    padding: 25px 30px;
    max-width: 95%;
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
  .container-fluid.w90.padtop20 {
    padding: 20px 15px;
    
  }
}

.padtop70 .areahome {
  max-width: 1290px;
  margin: 0 auto;
  padding: 40px 50px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Tablet view */
@media (max-width: 992px) {
  .padtop70 .areahome {
    padding: 30px 25px;
    max-width: 95%;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .padtop70 .areahome {
    padding: 20px 15px;
    
  }
}

.homehouse.padtop30 {
  max-width: 1290px;
  margin: 0 auto;
  padding: 40px 50px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Tablet view */
@media (max-width: 992px) {
  .homehouse.padtop30 {
    padding: 30px 25px;
    max-width: 95%;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .homehouse.padtop30 {
    padding: 20px 15px;
    
  }
}

/*Agents Page*/
/* Limit width of the agent info section */
.container-fluid.w90.padtop30 {
  max-width: 1490px;
  margin: 0 auto;
  padding: 40px 50px;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
}

/* Tablet adjustments */
@media (max-width: 992px) {
  .container-fluid.w90.padtop30 {
    padding: 30px 25px;
    max-width: 95%;
  }
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .container-fluid.w90.padtop30 {
    padding: 20px 15px;
    
  }
}

/* test page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 123, 191, 0.9), rgba(255, 107, 107, 0.8)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #007bbf, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.activity-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.activity-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.activity-content {
    padding: 30px;
}

.activity-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #007bbf;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.activity-features {
    list-style: none;
    margin-bottom: 25px;
}

.activity-features li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.activity-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.nightlife-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.nightlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.venue-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.venue-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.beach-activities {
    background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}

.restaurants-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.water-sports {
    background: linear-gradient(to right, #a8edea 0%, #fed6e3 100%);
}

.stats-section {
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}