/* style.css - RealMentor Frontend */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Typography - Flexible Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #0A2463; /* Default: dark blue for light backgrounds */
}

/* White headings for dark backgrounds */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-primary h1,
.bg-primary h2,
.gradient-bg h1,
.gradient-bg h2,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
    color: #fff !important;
}

/* Optional: Define utility classes */
.text-blue {
    color: #0A2463 !important;
}
.text-white {
    color: #fff !important;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0A2463, #1d3b8e) !important;
}

/* Header & Navigation */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    font-weight: 700;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

/* Navigation Links */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0 !important;
    font-family: 'Poppins', sans-serif;
}

/* Hover Effect */
.nav-link-hover:hover {
    color: #0A2463 !important;
    transform: translateY(-2px);
}

/* Active Menu Indicator */
.nav-link.active {
    color: #0A2463 !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFD700;
    border-radius: 3px 3px 0 0;
}

/* Login Button */
.btn-primary {
    background: #0A2463;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: #081d4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(10, 36, 99, 0.3);
}

/* Social Icons */
.social-icons a {
    transition: all 0.3s ease;
    color: #0A2463 !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #0A2463;
}

.social-icons a:hover {
    color: #FFD700 !important;
    background: #0A2463;
    transform: scale(1.1);
}

/* Footer Social Icons */
footer .social-icons a {
    color: white !important;
    background: transparent;
    border: none;
}

footer .social-icons a:hover {
    color: #FFD700 !important;
    background: transparent;
}

/* Enhanced Static Hero Section */
.hero-static {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 100px 80px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-subtitle {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero-subtitle span {
    font-weight: bold;
}

.hero-btn {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #f8f9fa 0%, transparent 100%);
}

/* About Section */
.about-title {
    color: #0A2463;
}

.about-btn {
    background: transparent;
    border: 2px solid #0A2463;
    color: #0A2463;
}

.about-btn:hover {
    background: #0A2463;
    color: white;
}

.team-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid #FFD700;
    border-radius: 0.5rem;
    transform: rotate(3deg);
    z-index: -1;
}

/* Featured Properties */
.featured-title {
    color: #0A2463;
}

.property-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.2) !important;
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* Services Section */
.services-title {
    color: #0A2463;
}

/* Service Card Small */
.service-card-small {
    border-radius: 15px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 36, 99, 0.15);
}

.service-card-small h5 {
    color: #0A2463;
}

.service-card-small .service-icon {
    width: 60px;
    height: 60px;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Read More Button */
.btn-outline-primary {
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0A2463 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
}

/* Services Page - Card Styling */
.service-card {
    position: relative;
    background: #0A2463;
    border: 2px solid #0A2463;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(10, 36, 99, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.2);
}

/* Icon Wrapper - Half outside, half over the card */
.icon-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 80px;
    height: 80px;
}

/* Icon Container */
.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0A2463, #1d3b8e);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(10, 36, 99, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Icon Styling */
.service-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Card Body */
.service-card .card-body {
    padding: 2rem;
    text-align: center;
}

/* Title Bar */
.service-card .bg-primary {
    background: #0A2463 !important;
    color: white;
    padding: 0.75rem 0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.feature-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.feature-item::before {
    content: "✓";
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
}

/* Read More Button */
.read-more-btn {
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
    border: 2px solid #0A2463;
    color: #0A2463;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background: #0A2463;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
}

/* Services Page Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0A2463, #1d3b8e) !important;
    margin-top: 80px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Copyright text - left aligned */
footer .text-start {
    text-align: left !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 15px;
        right: 15px;
    }
    
    .hero-static {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    
    .hero-content {
        padding: 80px 20px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .icon-wrapper {
        top: -35px;
    }
}

/* Success Stories Page */
.success-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Custom 3-column grid for success stories */
.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Video Card Styles */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-card .position-relative {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-card iframe:hover {
    transform: scale(1.02);
}

/* Play Button Overlay */
.video-card .position-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.video-card:hover .position-absolute {
    opacity: 1;
}

.video-card .fa-play {
    font-size: 2rem;
    color: white;
}

/* Stats Cards */
.stats-card {
    background: linear-gradient(135deg, #f8f9fc, #e9ecef);
    border: none;
    border-radius: 10px;
    padding: 20px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0A2463;
}

.stats-card p {
    margin: 0;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .stats-card {
        min-height: 100px;
    }
    
    .video-card {
        margin-bottom: 15px;
    }
    
    .video-card iframe {
        height: 150px;
    }
}

/* Property Residence Page Specific Styles */

/* Hero Section */
.property-hero {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Icon Container */
.icon-container {
    width: 70px;
    height: 70px;
    background: #0A2463;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Number */
.step-number span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Testimonial */
.testimonial-icon {
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .property-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .property-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}
/* Residence by Investment Page Specific Styles */

/* Step Number */
.step-number span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .residence-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .residence-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}
/* Business Residence Page Specific Styles */

/* Step Number */
.step-number span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Service Icon Wrapper */
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .business-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .business-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}
/* Rental Properties Page Specific Styles */

/* Step Number */
.step-number span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rental-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .rental-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}
/* Holiday Homes Page Specific Styles */

/* Custom Variables */
:root {
    --primary: #0A2463;
    --secondary: #1d3b8e;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #27ae60;
    --info: #3498db;
    --warning: #f39c12;
    --danger: #e74c3c;
}

/* Animation Classes */
.transform-hover {
    transition: all 0.3s ease;
}

.transform-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover h4 {
    color: var(--primary);
}

/* Icon Container */
.icon-container {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Number */
.step-number span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Card Enhancements */
.card {
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    border-radius: 15px;
}

.card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    transition: transform 0.5s ease;
}

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

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 50px;
}

/* Button Styles */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Table Styling */
.table th {
    font-weight: 600;
    color: #495057;
}

.table td, .table th {
    vertical-align: middle;
}

/* Alert Styling */
.alert {
    border-radius: 10px;
    font-size: 0.95rem;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Testimonial Section */
.testimonial-icon {
    position: relative;
}

.testimonial-icon i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/cta-overlay.png') repeat-x;
    opacity: 0.1;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .holiday-hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .holiday-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .process-step {
        margin-bottom: 1.5rem;
    }
    
    .icon-container {
        margin: 0 auto 1rem auto;
    }
    
    .benefits-row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .holiday-hero h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

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

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

/* Section Spacing */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Mobile Optimization */
@media (max-width: 992px) {
    .transform-hover:hover {
        transform: none;
    }
    
    .card-img-top {
        height: 200px !important;
    }
}

/* Print Styles */
@media print {
    .btn, .navbar, .footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
}
/* Tourist Resort Page Specific Styles */

/* Custom Variables */
:root {
    --primary: #0A2463;
    --secondary: #1d3b8e;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #27ae60;
    --info: #3498db;
    --warning: #f39c12;
    --danger: #e74c3c;
}

/* Animation Classes */
.transform-hover {
    transition: all 0.3s ease;
}

.transform-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover h4 {
    color: var(--primary);
}

/* Icon Container */
.icon-container {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Number */
.step-number span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Card Enhancements */
.card {
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    border-radius: 15px;
}

.card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    transition: transform 0.5s ease;
}

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

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 50px;
}

/* Button Styles */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Table Styling */
.table th {
    font-weight: 600;
    color: #495057;
}

.table td, .table th {
    vertical-align: middle;
}

/* Alert Styling */
.alert {
    border-radius: 10px;
    font-size: 0.95rem;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Testimonial Section */
.testimonial-icon {
    position: relative;
}

.testimonial-icon i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resort-hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .resort-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .process-step {
        margin-bottom: 1.5rem;
    }
    
    .icon-container {
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 576px) {
    .resort-hero h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
    }
}