/* main.css - Complete Clean CSS File with All Fixes */
/* Purple Theme Variables */
:root {
    --primary-purple: #6a11cb;
    --secondary-purple: #2575fc;
    --accent-pink: #ff4b7d;
    --dark-purple: #1a1a2e;
    --light-purple: #8a2be2;
    --light-purple-soft: rgba(138, 43, 226, 0.05);
    --gradient-purple: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-pink-purple: linear-gradient(135deg, #ff4b7d 0%, #6a11cb 100%);
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 70px !important;
}

/* FIXED: Navbar Custom Styles */
.navbar-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    padding: 10px 0;
}

.navbar-container-full {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.navbar-brand-custom {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-brand-custom span {
    color: #ffcc00 !important;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    margin-left: 5px;
}

.navbar-brand-custom i {
    color: #ff4b7d;
    margin-right: 10px;
    font-size: 1.4rem;
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 2px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link-custom:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link-custom.active {
    color: white !important;
    background: linear-gradient(135deg, #ff4b7d, #ff6b9d);
    box-shadow: 0 4px 15px rgba(255, 75, 125, 0.3);
}

.user-greeting {
    color: #ffcc00 !important;
    font-weight: 600 !important;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 20px;
    padding: 6px 12px !important;
    margin-right: 8px !important;
    pointer-events: none;
    border: 1px solid rgba(255, 204, 0, 0.2);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-toggler-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
    border-radius: 8px;
    margin-left: 10px;
}

.navbar-toggler-icon-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 204, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* FIXED: Modern Hero Section */
.hero-modern {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

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

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-purple-gradient {
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

/* Badges */
.badge-purple {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-light-purple {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
}

/* FIXED: Hero Stats - Horizontal Arrangement */
.hero-stats-modern {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 20px;
    width: 100%;
}

.stat-item-modern {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.stat-item-modern h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.stat-label-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Hero Image Modern */
.hero-image-modern {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.modern-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.main-couple-image {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.25);
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
}

.main-couple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-couple-image:hover img {
    transform: scale(1.05);
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(106, 17, 203, 0.3) 0%,
        rgba(37, 117, 252, 0.2) 50%,
        transparent 100%);
    pointer-events: none;
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    opacity: 0.3;
    filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: -15px;
    animation-delay: 2s;
}

.circle-3 {
    width: 50px;
    height: 50px;
    top: 30px;
    left: -30px;
    animation-delay: 4s;
}

/* Side Profile Images */
.side-profile-images {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.profile-thumbnail {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-thumbnail:hover {
    transform: scale(1.1) translateX(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.profile-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Status Indicators */
.thumbnail-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.thumbnail-status.online {
    background: #4CAF50;
}

.thumbnail-status.active {
    background: #FF9800;
}

.thumbnail-status.away {
    background: #9E9E9E;
}

/* Floating Cards */
.floating-card-modern {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    transition: all 0.3s ease;
    max-width: 200px;
}

.floating-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.floating-card-content-modern {
    padding: 0;
    margin: 0;
}

.avatar-sm-modern {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(106, 17, 203, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.avatar-sm-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar-sm-modern:hover img {
    transform: scale(1.1);
}

.floating-card-modern h6 {
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    line-height: 1.2;
}

.floating-card-modern small {
    color: #718096;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Positioning */
.card-1-modern {
    top: 10%;
    right: -10px;
    width: 160px;
    animation-delay: 0s;
}

.card-3-modern {
    bottom: 25%;
    left: -20px;
    width: 190px;
    animation-delay: 2s;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Update the Perfect Connections Section styles */

.perfect-connections {
    background: linear-gradient(135deg, #971818 0%, #240aa1 100%);
    padding: 80px 0;
    position: relative;
}

/* Reduce horizontal spacing on cards */
.connection-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 450px;
    border-radius: 20px !important;
    overflow: hidden;
    background: transparent;
    margin-bottom: 25px;
    /* Reduce the horizontal margins */
    margin-left: 5px;
    margin-right: 5px;
}

.connection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(106, 17, 203, 0.25) !important;
}

.full-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

/* Lighten the overlay for better text visibility on mobile */
.image-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%, /* Reduced from 0.7 */
        rgba(0, 0, 0, 0.4) 50%, /* Reduced from 0.5 */
        rgba(106, 17, 203, 0.2) 100% /* Reduced from 0.3 */
    );
    border-radius: 20px;
    transition: all 0.4s ease;
}

.connection-card:hover .image-dark-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(106, 17, 203, 0.3) 100%
    );
}

/* Reduce padding on mobile for more content space */
.connection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%, /* Reduced from 0.9 for better visibility */
        rgba(0, 0, 0, 0.5) 50%, /* Reduced from 0.6 */
        transparent 100%
    );
    padding: 25px 20px !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Update responsive styles to reduce spacing further on mobile */

@media (max-width: 992px) {
    .perfect-connections {
        padding: 60px 0;
    }
    
    .connection-card {
        margin-left: 0;
        margin-right: 0;
        /* Reduce margins between cards */
        margin-bottom: 20px;
    }
    
    .full-bg-image {
        min-height: 380px;
    }
    
    .connection-content {
        padding: 20px 15px !important;
    }
}

@media (max-width: 768px) {
    .perfect-connections {
        padding: 40px 0;
    }
    
    .connection-card {
        min-height: 350px;
        margin-bottom: 15px;
    }
    
    .full-bg-image {
        min-height: 350px;
    }
    
    .connection-content {
        padding: 18px 12px !important; /* Reduced padding */
    }
    
    /* Reduce section container padding on mobile */
    .perfect-connections .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 576px) {
    .perfect-connections {
        padding: 30px 0;
    }
    
    .connection-card {
        min-height: 320px;
        margin-bottom: 12px;
        /* Remove card margins completely on very small screens */
        margin-left: 0;
        margin-right: 0;
    }
    
    .full-bg-image {
        min-height: 320px;
    }
    
    .connection-content {
        padding: 15px 10px !important; /* Further reduced padding */
    }
    
    /* Even tighter container padding */
    .perfect-connections .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    /* Adjust grid spacing for cards */
    .perfect-connections .row.g-2 {
        margin-left: -4px;
        margin-right: -4px;
    }
    
    .perfect-connections .col-lg-4 {
        padding-left: 4px;
        padding-right: 4px;
    }
}

@media (max-width: 375px) {
    .connection-card {
        min-height: 300px;
        margin-bottom: 10px;
    }
    
    .full-bg-image {
        min-height: 300px;
    }
    
    .connection-content {
        padding: 12px 8px !important; /* Minimal padding */
    }
    
    /* Minimal container padding */
    .perfect-connections .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Remove all extra spacing */
    .perfect-connections .row.g-2 {
        margin-left: -2px;
        margin-right: -2px;
    }
    
    .perfect-connections .col-lg-4 {
        padding-left: 2px;
        padding-right: 2px;
    }
}

.full-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.image-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(106, 17, 203, 0.3) 100%
    );
    border-radius: 20px;
    transition: all 0.4s ease;
}

.connection-card:hover .image-dark-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(106, 17, 203, 0.4) 100%
    );
}

.connection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%
    );
    padding: 25px 20px !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Badges */
.connection-badge .badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-casual {
    background: linear-gradient(135deg, #ff4b7d, #ff6b6b);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-romantic {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-supportive {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Typography */
.connection-title {
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.connection-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Features List */
.connection-features {
    margin-top: 15px;
}

.feature-item {
    margin-bottom: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.feature-item i {
    font-size: 0.8rem;
    width: 20px;
}

/* Features Section - FIXED */
.features-modern {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-pink-purple);
    border-radius: 2px;
}

.section-subtitle-modern {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-card-modern {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    height: 100%;
}

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

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-modern i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title-modern {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-description-modern {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How It Works Section - FIXED */
.how-it-works-modern {
    padding: 80px 0;
    background: var(--light-purple-soft);
}

.steps-wrapper-modern {
    position: relative;
}

.steps-line-modern {
    position: absolute;
    top: 100px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: var(--gradient-pink-purple);
    z-index: 0;
}

.step-card-modern {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease;
    padding: 30px 20px;
    margin-bottom: 25px;
    height: 100%;
}

.step-card-modern:hover {
    transform: translateY(-10px);
}

.step-number-modern {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
}

.step-title-modern {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-description-modern {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.step-icon-modern i {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

/* CTA Section */
.cta-modern {
    padding: 80px 0;
    background: var(--gradient-purple);
    color: var(--white);
    text-align: center;
}

.cta-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-modern p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

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

.footer-links a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

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

.animate {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* FIXED: Responsive Design */
@media (max-width: 1200px) {
    .modern-image-container {
        max-width: 400px;
    }
    
    .main-couple-image {
        height: 500px;
    }
    
    .connection-card {
        min-height: 400px;
    }
    
    .full-bg-image {
        min-height: 400px;
    }
    
    .hero-stats-modern {
        gap: 15px;
    }
    
    .stat-item-modern h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        z-index: 1000;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .navbar-nav {
        width: 100%;
        padding: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 5px 0;
    }
    
    .nav-link-custom {
        margin: 0;
        padding: 12px 15px !important;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        font-size: 1rem;
    }
    
    .nav-link-custom i {
        margin-right: 12px;
        width: 20px;
        text-align: center;
    }
    
    .user-greeting {
        margin: 10px 0 !important;
        text-align: center;
        max-width: 100%;
        padding: 10px 15px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .user-greeting i {
        margin-right: 8px;
    }
    
    /* Hero adjustments */
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-content-modern {
        text-align: center;
    }
    
    .hero-buttons-modern {
        justify-content: center;
    }
    
    .hero-stats-modern {
        justify-content: space-around;
        gap: 10px;
    }
    
    .stat-item-modern h3 {
        font-size: 2rem;
    }
    
    .modern-image-container {
        max-width: 100%;
        margin-top: 40px;
    }
    
    .main-couple-image {
        height: 450px;
    }
    
    .side-profile-images {
        right: 15px;
        flex-direction: row;
        top: auto;
        bottom: -25px;
        transform: none;
        gap: 10px;
    }
    
    .profile-thumbnail {
        width: 55px;
        height: 55px;
    }
    
    .floating-card-modern {
        transform: scale(0.9);
    }
    
    .steps-line-modern {
        display: none;
    }
    
    .perfect-connections {
        padding: 60px 0;
    }
    
    .connection-card {
        min-height: 380px;
    }
    
    .full-bg-image {
        min-height: 380px;
    }
    
    .connection-content {
        padding: 20px 15px !important;
    }
    
    .connection-title {
        font-size: 1.4rem;
    }
    
    .connection-description {
        font-size: 0.9rem;
    }
    
    .section-title-modern {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px !important;
    }
    
    .hero-modern {
        padding: 60px 0 40px;
    }
    
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-stats-modern {
        gap: 8px;
        padding-top: 15px;
        margin-top: 30px;
    }
    
    .stat-item-modern h3 {
        font-size: 1.8rem;
    }
    
    .stat-label-modern {
        font-size: 0.85rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .main-couple-image {
        height: 400px;
        border-radius: 20px;
    }
    
    .side-profile-images {
        bottom: -20px;
        gap: 8px;
    }
    
    .profile-thumbnail {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .floating-card-modern {
        display: none;
    }
    
    .perfect-connections {
        padding: 40px 0;
    }
    
    .connection-card {
        min-height: 350px;
    }
    
    .full-bg-image {
        min-height: 350px;
    }
    
    .connection-title {
        font-size: 1.3rem;
    }
    
    .connection-description {
        font-size: 0.85rem;
    }
    
    .feature-card-modern {
        padding: 25px 20px;
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-modern i {
        font-size: 1.8rem;
    }
    
    .feature-title-modern {
        font-size: 1.2rem;
    }
    
    .step-card-modern {
        padding: 25px 15px;
    }
    
    .step-number-modern {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .step-title-modern {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 56px !important;
    }
    
    .navbar-brand-custom {
        font-size: 1.2rem;
    }
    
    .navbar-toggler-custom {
        padding: 5px 8px;
    }
    
    .hero-title-modern {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .hero-buttons-modern .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-stats-modern {
        gap: 5px;
        padding-top: 10px;
        margin-top: 25px;
    }
    
    .stat-item-modern h3 {
        font-size: 1.5rem;
    }
    
    .stat-label-modern {
        font-size: 0.75rem;
    }
    
    .modern-image-container {
        max-width: 100%;
    }
    
    .main-couple-image {
        height: 350px;
        border-radius: 15px;
    }
    
    .profile-thumbnail {
        width: 45px;
        height: 45px;
    }
    
    .decorative-circle {
        display: none;
    }
    
    .perfect-connections {
        padding: 40px 0;
    }
    
    .connection-card {
        min-height: 320px;
    }
    
    .full-bg-image {
        min-height: 320px;
    }
    
    .connection-title {
        font-size: 1.2rem;
    }
    
    .connection-description {
        font-size: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .section-subtitle-modern {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .cta-modern h2 {
        font-size: 2rem;
    }
    
    .cta-modern p {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .hero-stats-modern {
        gap: 3px;
    }
    
    .stat-item-modern h3 {
        font-size: 1.3rem;
    }
    
    .stat-label-modern {
        font-size: 0.7rem;
    }
    
    .connection-card {
        min-height: 300px;
    }
    
    .full-bg-image {
        min-height: 300px;
    }
    
    .connection-title {
        font-size: 1.1rem;
    }
    
    .section-title-modern {
        font-size: 1.6rem;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .navbar-container-full {
        max-width: 100%;
        padding: 0 30px;
    }
}


