:root {
    /* Primary Colors - Deep elegant base */
    --primary-color: #0a0a14;
    /* Rich black */
    --secondary-color: #1e1e2a;
    /* Dark slate */
    --accent-color: #d4af37;
    /* Gold - for luxury accents */
    --accent-dark: #b5922e;
    /* Darker gold */
    --accent-light: #f0e6c2;
    /* Soft gold light */
    /* Text Colors - Optimized contrast */
    --text-color: #ffffff;
    /* Pure white */
    --text-color-dark: #0a0a14;
    /* Matching primary */
    --text-color-light: #b8b8c7;
    /* Soft gray for secondary text */
    --text-lighter: #e0e0e5;
    /* Very light gray */
    /* Background Colors - Sophisticated neutrals */
    --bg-color: #ffffff;
    /* Clean white */
    --bg-dark: #0a0a14;
    /* Matching primary */
    --bg-light: #f8f8fa;
    /* Ultra light gray */
    --bg-accent: #f0f0f5;
    /* Slightly darker for contrast */
    /* UI Elements */
    --border-color: #e5e5eb;
    /* Very subtle borders */
    --border-radius: 8px;
    --border-radius-lg: 15px;
    /* Shadows - Subtle and elegant */
    --shadow-sm: 0 2px 8px rgba(10, 10, 20, 0.08);
    --shadow-md: 0 5px 15px rgba(10, 10, 20, 0.12);
    --shadow-lg: 0 10px 25px rgba(10, 10, 20, 0.15);
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    /* Typography - Keep your elegant fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    /* Spacing - Keep existing spacing system */
    --spacing-xxl: 100px;
    --spacing-xl: 50px;
    --spacing-lg: 30px;
    --spacing-md: 20px;
    --spacing-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color-dark);
    overflow-x: hidden;
    background-color: var(--light-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-admin {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
}

.btn-admin:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.section {
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-top: -50px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}


/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(5px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    /* Set a fixed min-height for header */
}


/* Logo Styles */


/* Improved Logo Styles */

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: auto;
    /* Allow container to expand with logo */
    height: auto;
    /* Don't force a height */
}

.logo-icon {
    width: 250px;
    /* Set your desired width */
    height: auto;
    /* Let height scale proportionally */
    max-height: 60px;
    /* Optional: set a max height if needed */
    object-fit: contain;
    display: block;
    transition: var(--transition-fast);
}


/* Add these media queries to maintain responsiveness */

@media (max-width: 1200px) {
    .logo-icon {
        width: 180px;
        max-height: 55px;
    }
}

@media (max-width: 992px) {
    .logo-icon {
        width: 190px;
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        width: 200px;
        max-height: 65px;
    }
    .logo-container {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .logo-icon {
        width: 190px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 180px;
        max-height: 55px;
    }
    .logo-container {
        gap: 8px;
    }
}

@media (max-width: 375px) {
    .logo-icon {
        width: 170px;
        max-height: 50px;
    }
}


/* Navigation Styles */

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--accent-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}


/* Auth Button Styles */

.desktop-auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login,
.btn-signup {
    padding: 8px 22px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-login {
    color: var(--text-color);
    border: 1px solid var(--text-color);
    background-color: transparent;
}

.btn-login:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

.btn-signup {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: 1px solid var(--accent-color);
}

.btn-signup:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}


/* Mobile Menu Button */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-fast);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

.mobile-auth-buttons {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}


/* Responsive Styles */

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: var(--transition-normal);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
    }
    .desktop-auth-buttons {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-auth-buttons {
        display: flex;
        width: 100%;
    }
    .mobile-auth-buttons .btn-login,
    .mobile-auth-buttons .btn-signup {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    .logo-main {
        font-size: 20px;
    }
    .logo-sub {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 280px;
        padding: 90px 20px 20px;
    }
    .header {
        padding: 12px 0;
    }
}


/* Responsive Styles */

@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }
    .nav-links ul {
        gap: 2rem;
    }
    .desktop-auth {
        display: none !important;
    }
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    .nav-links li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }
    .auth-links {
        flex-direction: column;
        margin-left: 0;
        margin-top: 2rem;
        padding-left: 0;
        border-left: none;
        width: 100%;
        gap: 1rem;
    }
    .auth-links a {
        width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .model-profile {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }
    .mobile-auth {
        display: none !important;
    }
    .desktop-auth {
        display: flex !important;
    }
    .nav-links {
        position: relative;
        right: auto;
        width: auto;
        height: auto;
        background: none;
        padding: 10px;
    }
    .nav-links ul {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.6rem;
    }
    .nav-links {
        width: 100%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .form-steps {
        padding: 30px 20px;
    }
    .step-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .step-indicators::before {
        display: none;
    }
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .form-buttons button {
        width: 100%;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Hero Section */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--accent-color);
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--text-color);
    color: var( --text-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive Styles for Buttons */

@media (max-width: 1200px) {
    .hero-buttons {
        max-width: 450px;
    }
    .hero-buttons .btn {
        padding: 12px 25px;
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .hero-buttons {
        max-width: 400px;
    }
    .hero-buttons .btn {
        padding: 10px 22px;
        font-size: 0.95rem;
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        max-width: 280px;
    }
    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .hero-buttons {
        max-width: 250px;
    }
    .hero-buttons .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
    z-index: 2;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.2rem;
}


/* Responsive Styles */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-nav {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        padding: 10px 25px;
    }
    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    .hero-nav {
        padding: 0 15px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 450px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .hero-buttons .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .hero-nav {
        padding: 0 10px;
    }
    .nav-btn {
        width: 35px;
        height: 35px;
    }
    .nav-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.85rem;
    }
    .hero-buttons .btn {
        padding: 7px 15px;
        font-size: 0.85rem;
    }
    .nav-btn {
        width: 30px;
        height: 30px;
    }
    .nav-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-nav {
        padding: 0 10px;
    }
    .nav-btn {
        width: 35px;
        height: 35px;
    }
    .nav-btn i {
        font-size: 1rem;
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    padding: 10px 20px;
    /* background: #000; */
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
}

.scroll-down a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.scroll-down a:hover {
    transform: translateY(5px);
    background: rgba(0, 0, 0, 0.3);
}

.scroll-down span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-down i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.scroll-down:hover i {
    transform: translateY(5px);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}


/* Responsive Styles for Scroll Down */

@media (max-width: 1200px) {
    .scroll-down {
        bottom: 35px;
    }
}

@media (max-width: 992px) {
    .scroll-down {
        bottom: 30px;
    }
    .scroll-down span {
        font-size: 0.85rem;
    }
    .scroll-down i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .scroll-down {
        bottom: 25px;
    }
    .scroll-down span {
        font-size: 0.8rem;
    }
    .scroll-down i {
        font-size: 1.2rem;
    }
    .scroll-down a {
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .scroll-down {
        bottom: 20px;
    }
    .scroll-down span {
        font-size: 0.75rem;
    }
    .scroll-down i {
        font-size: 1.1rem;
    }
    .scroll-down a {
        padding: 6px 12px;
    }
}

@media (max-width: 375px) {
    .scroll-down {
        bottom: 15px;
    }
    .scroll-down span {
        font-size: 0.7rem;
    }
    .scroll-down i {
        font-size: 1rem;
    }
    .scroll-down a {
        padding: 5px 10px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}


/* Featured Section */

.featured {
    margin-top: -120px;
    padding: 80px 0;
    margin-top: 2px;
    background-color: var(--light-gray);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    aspect-ratio: 3/4;
}

.featured-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-color);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
}

.featured-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.featured-overlay p {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Models Section */

.models {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.model-card {
    background-color: #f0f0f5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.model-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover .model-img {
    transform: scale(1.05);
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.model-bio {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.model-card:hover .model-bio {
    transform: translateY(0);
}

.model-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.model-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.model-category {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.view-profile {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.view-profile:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


/* Responsive Styles */

@media (max-width: 1200px) {
    .model-card {
        border-radius: 14px;
    }
    .model-info {
        padding: 18px;
    }
}

@media (max-width: 992px) {
    .model-card {
        border-radius: 12px;
    }
    .model-overlay {
        padding: 20px;
    }
    .model-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .model-card {
        border-radius: 10px;
    }
    .model-info {
        padding: 16px;
    }
    .model-name {
        font-size: 1rem;
    }
    .model-category {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .model-card {
        border-radius: 8px;
    }
    .model-overlay {
        padding: 16px;
    }
    .model-bio {
        font-size: 0.8rem;
    }
    .view-profile {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}


/* Gallery Section */

.gallery {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--text-color-dark);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: transform var(--transition-normal);
    transform: scaleX(0);
    transform-origin: right;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
    transition: opacity var(--transition-normal);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    color: var(--text-color);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    font-family: var(--font-body);
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
}


/* Testimonials Section */

.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--text-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-light));
}

.testimonial-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-content:hover .testimonial-image {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-content:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-quote-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.testimonial-text {
    flex: 1;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: var(--accent-light);
    font-size: 18px;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-color-dark);
    position: relative;
    padding-left: 20px;
}

.testimonial-text p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 40px;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 15px;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-style: normal;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot:hover {
    background-color: var(--accent-light);
}

.testimonial-dots .dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .testimonial-image {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    .testimonial-author {
        align-items: center;
    }
    .testimonial-author::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .testimonial-text p::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    .testimonial-controls {
        gap: 20px;
        margin-top: 30px;
    }
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .testimonial-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        padding: 20px;
    }
    .testimonial-image {
        width: 100px;
        height: 100px;
    }
    .testimonial-text p {
        font-size: 1rem;
    }
    .testimonial-author h4 {
        font-size: 1.1rem;
    }
}


/* Footer Styles */


/* Base Styles */

.site-footer {
    background-color: #111;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    padding-top: 3rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* Grid Layout */

.site-footer>.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
}


/* Brand Section */

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item i {
    color: #d4af37;
    margin-top: 2px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d4af37;
}


/* Common Section Styles */

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}


/* Newsletter Section */

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.newsletter-form button {
    background: #d4af37;
    color: #111;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: #e0c05c;
    transform: translateY(-2px);
}


/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}


/* Responsive Adjustments */

@media (max-width: 1024px) {
    .site-footer>.footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer>.footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
}


/* Responsive Footer */

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-map {
        height: 180px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
}


/* Modal Styles */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: var(--background-color);
    margin: 2rem auto;
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
}

.model-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    min-height: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out 0.1s;
}

.modal.active .model-profile {
    opacity: 1;
    transform: translateY(0);
}

.model-profile-image {
    position: relative;
    overflow: hidden;
}

.model-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-profile-image:hover img {
    transform: scale(1.05);
}

.model-profile-info {
    padding: 40px;
    background: white;
    overflow-y: auto;
    max-height: 600px;
}

.model-profile-info h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.model-profile-info p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.model-profile-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 15px;
}

.detail-item {
    text-align: center;
}

.detail-label {
    display: block;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.detail-value {
    display: block;
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 500;
}

.model-profile-bio {
    margin-bottom: 2rem;
}

.model-profile-bio h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.model-profile-bio p {
    color: var(--color-text);
    line-height: 1.6;
}

.model-profile-portfolio h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.portfolio-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Responsive Styles for Model Profile Modal */

@media (max-width: 992px) {
    .model-profile {
        grid-template-columns: 1fr;
    }
    .model-profile-image {
        height: 400px;
    }
    .model-profile-info {
        max-height: none;
    }
    .model-profile-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .model-profile-info {
        padding: 30px;
    }
    .model-profile-info h2 {
        font-size: 2rem;
    }
    .model-profile-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .model-profile-info {
        padding: 20px;
    }
    .model-profile-info h2 {
        font-size: 1.75rem;
    }
    .model-profile-image {
        height: 300px;
    }
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }
}


/* Back to Top Button */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-dark);
    transform: translateY(-5px);
}


/* Responsive Styles */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    .nav-links li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }
    .auth-links {
        flex-direction: column;
        margin-left: 0;
        margin-top: 2rem;
        padding-left: 0;
        border-left: none;
        width: 100%;
        gap: 1rem;
    }
    .auth-links a {
        width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .model-profile {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-image {
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.6rem;
    }
    .nav-links {
        width: 100%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .form-steps {
        padding: 30px 20px;
    }
    .step-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .step-indicators::before {
        display: none;
    }
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .form-buttons button {
        width: 100%;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.btn-view {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d4006b; /* Miss Jharkhand pink shade */
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.btn-view:hover {
  background-color: #a80053; /* Darker on hover */
}