/* Section title */
.recommended-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Card container */
.recommended-card {
    width: 260px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    margin: 0 10px;
    transition: all 0.25s ease-in-out;
    display: inline-block;
    vertical-align: top;
}

/* Hover effect */
.recommended-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Image holder with fixed aspect ratio */
.card-image {
    display: block;
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content styling */
.card-content {
    padding: 15px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-title a {
    color: #333;
    text-decoration: none;
}

.card-title .verified {
    color: #06c167; /* Fresha green alternative */
    font-size: 1rem;
}

/* Meta info */
.card-meta {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-meta i {
    margin-right: 6px;
    color: #888;
}
/* Force all cards to have the same size */
.recommended-card {
    width: 280px;               /* FIXED consistent width */
    height: 330px;              /* FIXED consistent height */
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* Image area always same height */
.recommended-card .card-image {
    width: 100%;
    height: 160px;              /* This is the key */
    overflow: hidden;
    display: block;
}

/* Image handling — perfect crop without distortion */
.recommended-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* crop cleanly */
    object-position: center;    /* crop center instead of top */
    border-bottom: 1px solid #eee;
}

/* Content area */
.recommended-card .card-content {
    padding: 15px;
    flex: 1;                    /* makes text area stable */
}

/* Title styling */
.recommended-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    height: 45px;               /* locks text area height */
    overflow: hidden;           /* prevents resize */
}

/* Meta info height is fixed */
.recommended-card .card-meta {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Section title */
.latest-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Card shell */
.latest-card {
    width: 280px; 
    height: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.latest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Image */
.latest-card .card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: block;
}

.latest-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Make crop perfect */
}

/* Content */
.latest-card .card-content {
    padding: 15px;
    flex: 1;
}

/* Title */
.latest-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    gap: 6px;
    align-items: center;
    height: 45px;          /* lock text height — perfect alignment */
    overflow: hidden;
}

.latest-card .card-title a {
    color: #333;
    text-decoration: none;
}

/* Verified icon */
.latest-card .verified {
    color: #06c167;
    font-size: 1rem;
}

/* Meta info */
.latest-card .card-meta {
    margin-top: 12px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.latest-card .card-meta i {
    margin-right: 6px;
    color: #888;
}


/* Section Style */
.fresha-steps {
    background: linear-gradient(180deg, #faf8ff 0%, #ffffff 80%);
    padding: 60px 0;
}

.steps-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2D2A41;
    margin-bottom: 10px;
}

.steps-subtitle {
    color: #6d6b7a;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* Layout */
.steps-wrapper {
    display: flex;
    justify-content: center;
    /*gap: 20px;*/
}

/* Step Card */
.step-card {
    margin-bottom: 20px;
}

.step-inner {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    min-height: 330px;
    box-shadow: 0 6px 20px rgba(112, 59, 247, 0.08);
    transition: all 0.25s ease;
    border: 1px solid #f1ecff;
}

.step-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(112, 59, 247, 0.15);
}

/* Icon Container */
.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

/* Fresha Inspired Color Palettes */
.fresha-color-1 {
    background: linear-gradient(135deg, #F0E5FF, #DCCAFF);
}

.fresha-color-2 {
    background: linear-gradient(135deg, #FFDCEB, #FFCAE2);
}

.fresha-color-3 {
    background: linear-gradient(135deg, #D3FFF5, #C0FFF0);
}

.step-icon img {
    width: 55%;
    height: auto;
}

/* Text Styling */
.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2D2A41;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.95rem;
    color: #6c6a76;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 25px;
    }
}




/* Section background and spacing */
.footer-links-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 30px 0;
}

.footer-links-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Grid styling */
.footer-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* City card */
.footer-city-card {
    padding: 0;
}
.city-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.city-card-inner {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    min-height: 130px;
    transition: 0.25s ease-in-out;
}

.city-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Header button (for mobile expand/collapse) */
.city-card-header {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.city-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.toggle-icon {
    font-size: 1.3rem;
    font-weight: bold;
    color: #888;
    transition: transform 0.25s ease;
}

/* Links list */
.city-links-list {
    list-style: none;
    margin-top: 15px;
    padding-left: 5px;
    display: block;
}

.city-links-list li {
    margin-bottom: 10px;
}

.city-links-list a {
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.city-links-list a:hover {
    color: #06c167; /* green highlight used in your UI */
}


/* Wrapper: CSS Grid for perfect alignment */
.footer-links-wrapper {
    display: grid;
    gap: 20px;

    /* Default: mobile first (1 per row) */
    grid-template-columns: repeat(1, 1fr);
}

/* Tablets: 2 per row */
@media (min-width: 768px) {
    .footer-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small laptops: 3 per row */
@media (min-width: 992px) {
    .footer-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large screens / desktops: 4 per row */
@media (min-width: 1200px) {
    .footer-links-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}














/* ================= Hero Section ================= */

.sehalife-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F6FF 0%, #FFFFFF 60%);
    overflow: hidden;
}

/* Background Shapes */
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.32;
    filter: blur(40px);
}

.shape.s1 {
    width: 240px; height: 240px;
    background: #d9c6ff;
    top: -40px; left: -40px;
}

.shape.s2 {
    width: 180px; height: 180px;
    background: #ffcfe8;
    top: 120px; right: -30px;
}

.shape.s3 {
    width: 190px; height: 190px;
    background: #c0fff5;
    bottom: -40px; left: 60px;
}

.shape.s4 {
    width: 150px; height: 150px;
    background: #ffeac5;
    bottom: 140px; right: 0;
}

.hero-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 2.7rem;
    line-height: 1.2;
    font-weight: 700;
    color: #2C204F;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 1.1rem;
    color: #6A6880;
    margin-bottom: 35px;
}

/* Search Card */
.hero-search-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(86, 48, 200, 0.12);
    border: 1px solid #f0ecff;
    max-width: 780px;
    margin: auto;
}

.hero-fields {
    display: flex;
    gap: 14px;
}

.field-group {
    position: relative;
    width: 100%;
}

.field-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #7A6BAF;
    font-size: 16px;
    z-index: 5;
}

.hero-select {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border-radius: 10px;
    border: 1px solid #d9d5f2;
    font-size: 15px;
    color: #3a3a4a;
    background: #fff;
}

/* Search Button */
.hero-btn {
    background: linear-gradient(135deg, #7A53FF, #5F3DF7);
    border: none;
    padding: 12px 30px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 48, 200, 0.25);
}

/* Stats */
.hero-stats {
    list-style: none;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

.hero-stats li {
    font-size: 15px;
    color: #6e6a83;
}

.hero-stats li strong {
    font-size: 18px;
    color: #2c204f;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-fields {
        flex-direction: column;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .sehalife-hero
    {
        padding: 30px 0 80px;
    }
}

/* Make Select2 box align with icon */
.select2-container--default .select2-selection--single {
    height: 48px !important;
    padding-left: 36px !important;  /* space for icon */
    border-radius: 10px !important;
    border: 1px solid #d9d5f2 !important;
    display: flex;
    align-items: center;
}

/* Ensure selected text doesn’t overlap icon */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    padding-left: 8px !important;
    color: #3a3a4a !important;
    font-size: 15px !important;
}

/* Dropdown arrow alignment */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 8px !important;
}

/* Position icon ABOVE Select2 */
.field-group .field-icon {
    z-index: 50; /* so it stays visible */
    font-size: 17px;
    left: 12px;
}

/* Fix Select2 dropdown height */
.select2-container .select2-selection--single {
    height: 48px !important;
}

/* When Select2 is opened */
.select2-dropdown {
    border-radius: 10px !important;
    border: 1px solid #d9d5f2 !important;
}

/* Adjust hero-select container so icons align nicely */
.field-group {
    position: relative;
}



