:root {
    --primary: #FF9EB5;
    --primary-dark: #FF7A9A;
    --secondary: #A5D8FF;
    --dark: #2E2E3A;
    --light: #FFF9FB;
    --gold: #E8C07D;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    backdrop-filter: blur(8px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.logo-icon {
    color: var(--primary);
    margin-right: 8px;
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 40px;
}

.nav-cta .btn {
    padding: 12px 24px;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    z-index: 101;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD6E0 0%, #A5D8FF 100%);
    z-index: -1;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' opacity='0.1'%3E%3Cg fill='%232E2E3A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.hero-image {
    flex: 1;
    position: relative;
    height: 600px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--dark);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--secondary);
    z-index: -1;
    opacity: 0.6;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(46, 46, 58, 0.8);
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 158, 181, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 158, 181, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-img-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

.hero-img-decoration {
    position: absolute;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.decoration-1 {
    top: -40px;
    right: -40px;
    width: 200px;
}

.decoration-2 {
    bottom: -40px;
    left: -40px;
    width: 180px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Search Section */
.search-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.search-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.search-title {
    text-align: center;
    margin-bottom: 32px;
}

.search-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.search-title p {
    color: rgba(46, 46, 58, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: white;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    z-index: 1;
}

.search-form input,
.search-form select {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid rgba(46, 46, 58, 0.1);
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    background: white;
    appearance: none;
}

.search-form input:focus,
.search-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 158, 181, 0.2);
    outline: none;
}

.search-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232E2E3A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.search-btn {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.search-btn .btn {
    padding: 16px 48px;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--secondary);
    z-index: -1;
    opacity: 0.4;
}

.section-header p {
    color: rgba(46, 46, 58, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-card p {
    color: rgba(46, 46, 58, 0.7);
    font-size: 16px;
}

/* Names Showcase */
.names-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF6F9 0%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

.names-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FF9EB5' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.names-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.names-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(46, 46, 58, 0.1);
}

.name-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: rgba(46, 46, 58, 0.6);
    position: relative;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.name-tab.active {
    color: var(--primary);
}

.name-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    z-index: 1;
}

.names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.name-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.name-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.name-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.name-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--dark);
}

.name-card p {
    color: rgba(46, 46, 58, 0.7);
    font-size: 15px;
    margin-bottom: 12px;
}

.name-origin {
    display: inline-block;
    background: rgba(165, 216, 255, 0.2);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.name-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.name-favorite:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin: 0 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid var(--primary);
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 32px;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-quote::before {
    position: absolute;
    top: -16px;
    left: -24px;
}

.testimonial-quote::after {
    position: absolute;
    bottom: -32px;
    right: -24px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-role {
    color: rgba(46, 46, 58, 0.6);
    font-size: 14px;
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.newsletter h2::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--gold);
    z-index: -1;
    opacity: 0.4;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background: var(--dark);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    opacity: 0.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-newsletter p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
}

.footer-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 4px 0 0 4px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-form button {
    padding: 0 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-form button:hover {
    background: var(--primary-dark);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-sm);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 54px;
    }

    .hero-image {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        width: 100%;
    }

    .feature-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0 0 24px 0;
    }

    .nav-cta {
        margin: 24px 0 0 0;
        width: 100%;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
        height: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .search-container {
        width: 100%;
        padding: 32px 24px;
    }

    .search-title h2 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .newsletter h2 {
        font-size: 36px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form button {
        position: static;
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .names-tabs {
        flex-wrap: wrap;
    }

    .name-tab {
        padding: 8px 16px;
        font-size: 16px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-quote {
        font-size: 18px;
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0; /* Reduced padding */
    z-index: 100;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px; /* Slightly smaller logo */
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #2E2E3A;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    color: #FF9EB5;
    margin-right: 8px;
    font-size: 20px; /* Smaller icon */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px; /* Reduced gap between items */
    align-items: center;
}

.nav-links a {
    color: #2E2E3A;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px; /* Slightly smaller font */
    transition: all 0.3s ease;
}

.nav-cta .btn {
    padding: 10px 18px; /* More compact button */
    font-size: 14px;
}

.mobile-menu {
    display: none;
    font-size: 22px; /* Smaller menu icon */
    cursor: pointer;
    color: #2E2E3A;
}

/* Mobile Styles */
@media (max-width: 768px) {
    header {
        padding: 12px 0; /* Even more compact on mobile */
    }

    .nav-links {
        position: fixed;
        top: 60px; /* Closer to header */
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: auto; /* Auto height based on content */
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px; /* Reduced padding */
        box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 99;
        gap: 12px; /* Smaller gap between links */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        padding: 8px 0; /* Reduced vertical padding */
        display: block;
        font-size: 15px;
    }

    .nav-cta {
        margin-top: 12px; /* Reduced margin */
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        padding: 10px;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 18px;
    }

    .mobile-menu {
        font-size: 20px;
    }
}

.hero {
    height: 90vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Text takes more space */
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 800px; /* Increased max-width */
    padding-right: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    position: relative;
    height: 600px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    color: #2E2E3A;
    line-height: 1.2;
    text-align: left;
}

.hero h1 span {
    color: #FF9EB5;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: #A5D8FF;
    z-index: -1;
    opacity: 0.6;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(46, 46, 58, 0.8);
    max-width: 600px;
    text-align: left;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.hero-img-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img-main {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-img-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-image {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        max-width: 100%;
    }

    .hero h1, .hero p {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
        height: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
