*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   PAGE HERO
========================= */

.page-hero{
    padding:180px 30px 100px;
    background:
    linear-gradient(
        rgba(255,250,245,.95),
        rgba(255,250,245,.95)
    ),
    url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?q=80&w=2070');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.page-hero-content{
    max-width:1000px;
    margin:auto;
}

.page-badge{
    display:inline-flex;
    padding:14px 28px;
    border-radius:999px;
    background:rgba(200,155,60,.12);
    color:#8b1e2d;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:35px;
}

.page-hero h1{
    font-size:70px;
    line-height:1.2;
    margin-bottom:30px;
    color:#2b2b2b;
}

.page-hero h1 span{
    display:block;
    color:#8b1e2d;
    font-size:34px;
    margin-top:18px;
}

.page-hero p{
    font-size:22px;
    line-height:1.9;
    color:#6b7280;
}


/* =========================
   PROFILES
========================= */

.profiles-section{
    padding:100px 30px;
    background:#fffaf5;
}

.profiles-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

/* CARD */

.frontend-profile-card{
    background:white;
    border-radius:38px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(200,155,60,.12);
    box-shadow:
    0 20px 60px rgba(0,0,0,.05);
    position:relative;
}

.frontend-profile-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 30px 90px rgba(0,0,0,.08);
}

/* IMAGE */

.frontend-profile-image-wrap{
    width:100%;
    height:500px;
    overflow:hidden;
    position:relative;
    background:#f8f1e7;
}

.frontend-profile-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.frontend-profile-card:hover .frontend-profile-image{
    transform:scale(1.05);
}

/* GENDER BADGE */

.profile-gender-badge{
    position:absolute;
    top:22px;
    left:22px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    padding:14px 18px;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    font-weight:700;
    color:#8b1e2d;
    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.profile-gender-badge span{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#6b7280;
    margin-top:4px;
}

/* CONTENT */

.frontend-profile-content{
    padding:35px;
}

.frontend-profile-id{
    font-size:24px;
    font-weight:800;
    color:#8b1e2d;
    margin-bottom:14px;
}

.frontend-profile-category{
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

/* BUTTONS */

.profile-buttons{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* VIEW BUTTON */

.view-profile-btn{
    width:100%;
    min-height:62px;
    border-radius:20px;
    background:#8b1e2d;
    color:white;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:.35s;
    font-weight:700;
}

.view-profile-btn span{
    font-size:11px;
    letter-spacing:1px;
    opacity:.8;
    margin-top:5px;
}

.view-profile-btn:hover{
    transform:translateY(-3px);
    background:#741624;
}

/* ENQUIRE BUTTON */

.enquire-btn{
    width:100%;
    min-height:62px;
    border-radius:20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:.35s;
    font-weight:700;
}

.enquire-btn span{
    font-size:11px;
    letter-spacing:1px;
    opacity:.85;
    margin-top:5px;
}

.enquire-btn:hover{
    transform:translateY(-3px);
    background:#1ebe5d;
}

/* EMPTY */

.no-profiles{
    grid-column:1/-1;
    background:white;
    border-radius:40px;
    padding:100px 40px;
    text-align:center;
    border:1px solid rgba(200,155,60,.1);
}

.no-profiles h2{
    font-size:42px;
    color:#8b1e2d;
    margin-bottom:20px;
}

.no-profiles p{
    color:#6b7280;
    font-size:20px;
    line-height:1.9;
}
/* =========================
   STATS
========================= */

.stats-section{
    padding:80px 30px;
    background:#fff;
}

.stats-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.stat-card{
    background:#fffaf5;
    border-radius:36px;
    padding:50px 40px;
    text-align:center;
    border:1px solid rgba(200,155,60,.12);
}

.stat-card h2{
    font-size:60px;
    color:#8b1e2d;
    margin-bottom:20px;
}

.stat-card p{
    font-size:22px;
    color:#2b2b2b;
    font-weight:700;
}

.stat-card p span{
    display:block;
    margin-top:10px;
    font-size:14px;
    color:#6b7280;
    letter-spacing:1px;
}

/* =========================
   RECENT
========================= */

.recent-section{
    padding:100px 30px;
}

.recent-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.recent-card{
    background:white;
    border-radius:36px;
    overflow:hidden;
    border:1px solid rgba(200,155,60,.12);
    transition:.4s;
    box-shadow:
    0 20px 60px rgba(0,0,0,.05);
}

.recent-card:hover{
    transform:translateY(-8px);
}

.recent-image{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
}

.recent-content{
    padding:30px;
}

.recent-content h3{
    color:#8b1e2d;
    margin-bottom:24px;
    font-size:24px;
}

.recent-btn{
    width:100%;
    height:58px;
    border-radius:18px;
    background:#8b1e2d;
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    transition:.3s;
}

.recent-btn:hover{
    transform:translateY(-3px);
    background:#741624;
}

/* =========================
   CTA
========================= */

.cta-section{
    padding:100px 30px;
}

.cta-box{
    max-width:1200px;
    margin:auto;
    background:#8b1e2d;
    border-radius:50px;
    padding:80px 50px;
    text-align:center;
    color:white;
}

.cta-box h2{
    font-size:52px;
    line-height:1.4;
    margin-bottom:30px;
}

.cta-box p{
    font-size:22px;
    opacity:.9;
    margin-bottom:40px;
}

.cta-btn{
    display:inline-flex;
    height:64px;
    padding:0 40px;
    border-radius:22px;
    background:white;
    color:#8b1e2d;
    text-decoration:none;
    align-items:center;
    justify-content:center;
    font-weight:700;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .stats-section,
    .recent-section,
    .cta-section{
        padding:80px 20px;
    }

    .stat-card{
        padding:40px 30px;
    }

    .stat-card h2{
        font-size:42px;
    }

    .recent-image{
        height:340px;
    }

    .cta-box{
        padding:60px 30px;
        border-radius:36px;
    }

    .cta-box h2{
        font-size:34px;
    }

    .cta-box p{
        font-size:18px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .profiles-section{
        padding:80px 20px;
    }

    .frontend-profile-image-wrap{
        height:420px;
    }

    .frontend-profile-content{
        padding:28px;
    }

    .frontend-profile-id{
        font-size:22px;
    }

    .no-profiles{
        padding:80px 30px;
    }

    .no-profiles h2{
        font-size:32px;
    }

}

/* =========================
   CATEGORIES
========================= */

.categories-section{
    padding:100px 30px;
}

.categories-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD */

.category-card{
    background:white;
    border-radius:36px;
    padding:50px 40px;
    text-decoration:none;
    transition:.4s;
    border:1px solid rgba(200,155,60,.12);
    box-shadow:
    0 20px 60px rgba(0,0,0,.05);
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 30px 80px rgba(0,0,0,.08);
}

/* ICON */

.category-icon{
    width:90px;
    height:90px;
    border-radius:28px;
    background:rgba(200,155,60,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:35px;
}

/* TEXT */

.category-card h2{
    font-size:34px;
    color:#8b1e2d;
    margin-bottom:16px;
}

.category-card p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .page-hero{
        padding:160px 20px 80px;
    }

    .page-hero h1{
        font-size:44px;
    }

    .page-hero h1 span{
        font-size:24px;
    }

    .page-hero p{
        font-size:18px;
    }

    .categories-section{
        padding:80px 20px;
    }

    .category-card{
        padding:40px 30px;
    }

    .category-card h2{
        font-size:28px;
    }

}

body{
    font-family:'Inter',sans-serif;
    background:#fffaf5;
    color:#2b2b2b;
    overflow-x:hidden;
}

/* HERO */

.hero-section{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:120px 30px;
    overflow:hidden;
    background:
    linear-gradient(
        rgba(255,250,245,.94),
        rgba(255,250,245,.94)
    ),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070');
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top left,
    rgba(200,155,60,.12),
    transparent 30%);
}

.hero-content{
    max-width:1200px;
    width:100%;
    text-align:center;
    position:relative;
    z-index:2;
}

/* BADGE */

.hero-badge{
    display:inline-flex;
    padding:14px 28px;
    border-radius:999px;
    background:rgba(200,155,60,.12);
    color:#8b1e2d;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:35px;
    animation:fadeUp .8s ease;
}

/* TITLE */

.hero-title{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:30px;
    color:#2b2b2b;
    animation:fadeUp 1s ease;
}

.hero-title span{
    display:block;
    font-size:36px;
    color:#8b1e2d;
    margin-top:18px;
    font-weight:700;
}

/* SUBTITLE */

.hero-subtitle{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:1.9;
    color:#6b7280;
    margin-bottom:70px;
    animation:fadeUp 1.2s ease;
}

/* GENDER CARDS */

.gender-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    animation:fadeUp 1.4s ease;
}

.gender-card{
    background:white;
    border-radius:36px;
    padding:50px;
    text-decoration:none;
    color:#2b2b2b;
    transition:.4s;
    border:1px solid rgba(200,155,60,.12);
    box-shadow:
    0 20px 60px rgba(0,0,0,.06);
}

.gender-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 30px 80px rgba(0,0,0,.08);
}

.gender-icon{
    font-size:60px;
    margin-bottom:30px;
}

.gender-card h2{
    font-size:34px;
    margin-bottom:16px;
    color:#8b1e2d;
}

.gender-card p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

/* WHY SECTION */

.why-section{
    padding:120px 30px;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:70px;
}

.section-badge{
    color:#8b1e2d;
    font-weight:700;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:56px;
    margin-bottom:25px;
}

.section-header p{
    font-size:20px;
    color:#6b7280;
    line-height:1.9;
}

/* FEATURES */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    max-width:1300px;
    margin:auto;
}

.feature-card{
    background:white;
    border-radius:32px;
    padding:45px;
    transition:.4s;
    border:1px solid rgba(200,155,60,.12);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    font-size:50px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:30px;
    margin-bottom:18px;
    color:#8b1e2d;
}

.feature-card p{
    color:#6b7280;
    line-height:1.9;
    font-size:17px;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* =========================
   HEADER
========================= */

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(255,250,245,.92);
    border-bottom:1px solid rgba(200,155,60,.08);
    transition:.3s;
}

.navbar{
    max-width:1400px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/* =========================
   LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
}

.logo-icon{
    width:62px;
    height:62px;
    border-radius:22px;
    background:rgba(200,155,60,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.3s;
}

.logo:hover .logo-icon{
    transform:rotate(-6deg) scale(1.04);
}

.logo-texts h1{
    font-size:24px;
    color:#8b1e2d;
    margin-bottom:4px;
    font-weight:800;
}

.logo-texts p{
    color:#6b7280;
    font-size:14px;
    letter-spacing:.5px;
}

/* =========================
   MENU
========================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:36px;
}

.nav-menu a{
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
    position:relative;
    transition:.3s;
}

.nav-menu a span{
    color:#2b2b2b;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.nav-menu a small{
    color:#9ca3af;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.nav-menu a:hover span{
    color:#8b1e2d;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-12px;
    width:0;
    height:2px;
    background:#c89b3c;
    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

/* =========================
   RIGHT
========================= */

.nav-right{
    display:flex;
    align-items:center;
    gap:16px;
}

/* ADMIN BUTTON */

.admin-btn{
    height:56px;
    padding:0 28px;
    border-radius:18px;
    background:#8b1e2d;
    color:white;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.admin-btn small{
    font-size:10px;
    letter-spacing:1px;
    opacity:.8;
}

.admin-btn:hover{
    transform:translateY(-3px);
    background:#741624;
    box-shadow:
    0 12px 30px rgba(139,30,45,.18);
}

/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle{
    width:54px;
    height:54px;
    border:none;
    border-radius:18px;
    background:rgba(200,155,60,.12);
    color:#8b1e2d;
    display:none;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

.mobile-toggle:hover{
    transform:translateY(-2px);
}

/* =========================
   PAGINATION
========================= */

.pagination-section{
    padding:0 30px 100px;
    background:#fffaf5;
}

.pagination{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
}

/* BUTTON */

.pagination-btn{
    min-width:58px;
    height:58px;
    padding:0 24px;

    border-radius:20px;

    background:white;

    color:#8b1e2d;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;

    transition:.35s;

    border:1px solid rgba(200,155,60,.12);

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

/* HOVER */

.pagination-btn:hover{

    transform:translateY(-4px);

    background:#fff3e4;

    box-shadow:
    0 18px 40px rgba(0,0,0,.06);

}

/* ACTIVE */

.active-page{

    background:#8b1e2d;

    color:white;

    border-color:#8b1e2d;

    box-shadow:
    0 18px 40px rgba(139,30,45,.18);

}

/* MOBILE */

@media(max-width:768px){

    .pagination-section{

        padding:0 20px 80px;

    }

    .pagination{

        gap:10px;

    }

    .pagination-btn{

        min-width:50px;
        height:50px;

        padding:0 18px;

        border-radius:16px;

        font-size:14px;

    }

}

/* =========================
   FOOTER
========================= */

.main-footer{
    background:#fff;
    border-top:1px solid rgba(200,155,60,.1);
    padding:80px 30px 40px;
}

.footer-content{
    max-width:1400px;
    margin:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* LOGO */

.footer-logo{
    margin-bottom:35px;
}

.footer-logo h2{
    font-size:38px;
    color:#8b1e2d;
    margin-bottom:12px;
    font-weight:800;
}

.footer-logo p{
    color:#6b7280;
    font-size:17px;
    letter-spacing:.5px;
}

/* LINKS */

.footer-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.footer-links a{
    text-decoration:none;
    color:#374151;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.footer-links a:hover{
    color:#8b1e2d;
}

/* COPY */

.footer-copy{
    color:#9ca3af;
    font-size:15px;
    letter-spacing:.5px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .main-footer{
        padding:70px 20px 35px;
    }

    .footer-logo h2{
        font-size:28px;
        line-height:1.5;
    }

    .footer-logo p{
        font-size:15px;
    }

    .footer-links{
        gap:20px;
    }

    .footer-links a{
        font-size:14px;
    }

    .footer-copy{
        font-size:13px;
        line-height:1.7;
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-title{
        font-size:48px;
    }

    .hero-title span{
        font-size:28px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .section-header h2{
        font-size:40px;
    }

}