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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.navbar-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav a:hover {
    color: #ffd700;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    pointer-events: auto;
    position: relative;
    min-width: 45px;
    min-height: 35px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn:hover {
    opacity: 0.8;
}

.mobile-menu-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block !important;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    padding: 0.75rem 0;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #ffd700;
}

.mobile-nav-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
    padding: 0;
}

#mobile-login-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#mobile-signup-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333 !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #667eea;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-apple, .btn-google {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-apple:hover, .btn-google:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-apple svg, .btn-google svg {
    width: 24px;
    height: 24px;
}

.btn-google {
    background: #000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

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

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
}

.about-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.about-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #667eea;
}

.about-feature svg {
    width: 24px;
    height: 24px;
}

/* What is Sections */
.what-is-section {
    padding: 6rem 0;
    background: #fff;
}

.what-is-section.what-is-baby {
    background: #f8f9fa;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.what-is-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.what-is-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.what-is-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #667eea;
    font-weight: 500;
}

.what-is-feature svg {
    width: 24px;
    height: 24px;
}

.what-is-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

/* For Daddies/Babies Sections */
.for-daddies, .for-babies {
    padding: 6rem 0;
    background: #f8f9fa;
}

.for-babies {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.for-babies .section-title,
.for-babies .section-subtitle,
.for-babies .benefit-card h3,
.for-babies .benefit-card p,
.for-babies .cta-box p {
    color: #fff;
}

.for-babies .section-subtitle {
    opacity: 0.9;
}

.for-babies .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.for-babies .benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
}

.for-babies .cta-box {
    background: rgba(255, 255, 255, 0.15);
}

.cta-box p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Cities Section */
.cities {
    padding: 6rem 0;
    background: #f8f9fa;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.city-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.city-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: scale(1.05);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
    color: #fff;
}

.city-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.city-count {
    font-size: 0.85rem;
    opacity: 0.9;
}

.find-near-me {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.find-near-me h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.find-near-me p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Safety Tips Section */
.safety {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.safety .section-title,
.safety .section-subtitle {
    color: #fff;
}

.safety .section-subtitle {
    opacity: 0.9;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.safety-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
}

.safety-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.safety-icon svg {
    width: 30px;
    height: 30px;
}

.safety-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.safety-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Login & Sign Up Steps Section */
.login-steps {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-steps .section-title,
.login-steps .section-subtitle {
    color: #fff;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.step-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    margin-top: 2rem;
}

.steps-cta .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Do's and Don'ts Section */
.dos-donts {
    padding: 6rem 0;
    background: #f8f9fa;
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.dos-column,
.donts-column {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dos-column h3,
.donts-column h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.dos-column h3 {
    color: #10b981;
}

.donts-column h3 {
    color: #ef4444;
}

.dos-column h3 svg,
.donts-column h3 svg {
    width: 28px;
    height: 28px;
}

.dos-column ul,
.donts-column ul {
    list-style: none;
}

.dos-column li,
.donts-column li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
}

.dos-column li:last-child,
.donts-column li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cross-icon {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* App Section */
.app {
    padding: 6rem 0;
    background: #fff;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.app-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 0.5rem 0;
    color: #667eea;
    font-size: 1.05rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-image img {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

/* Luxury Experience Section */
.luxury {
    padding: 6rem 0;
    background: #1a1a2e;
}

.luxury .section-title,
.luxury .section-subtitle {
    color: #fff;
}

.luxury .section-subtitle {
    opacity: 0.8;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.luxury-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-5px);
}

.luxury-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.luxury-card:hover img {
    transform: scale(1.1);
}

.luxury-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: #fff;
}

.luxury-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.luxury-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Discreet Section */
.discreet {
    padding: 6rem 0;
    background: #f8f9fa;
}

.discreet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discreet-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.discreet-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.discreet-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #667eea;
}

.discreet-feature svg {
    width: 24px;
    height: 24px;
}

.discreet-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: #fff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.story-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.story-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-author {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.author-name {
    color: #333;
    font-weight: 600;
}

.author-location {
    color: #667eea;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #667eea;
}

.modal-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.modal-body h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-body input,
.modal-body select {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-body input:focus,
.modal-body select:focus {
    outline: none;
    border-color: #667eea;
}

.forgot-password {
    text-align: center;
    color: #667eea;
    text-decoration: none;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.terms {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: #ffd700;
    color: #333;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .app-content,
    .discreet-content,
    .what-is-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-content,
    .discreet-content,
    .what-is-content {
        gap: 2rem;
    }

    .app-image,
    .discreet-image,
    .what-is-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .features-grid,
    .stories-grid,
    .cities-grid,
    .safety-grid,
    .luxury-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features,
    .discreet-features {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
        background: rgba(255, 215, 0, 0.9);
        border-radius: 6px;
        padding: 12px 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        position: relative;
        z-index: 9999;
        min-width: 48px;
        min-height: 48px;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-btn span {
        background: #333 !important;
    }

    .navbar-actions .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-grid,
    .stories-grid,
    .cities-grid,
    .safety-grid,
    .luxury-grid,
    .benefits-grid,
    .dos-donts-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-actions,
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .stat {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        text-align: center;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }

    .feature-card,
    .benefit-card,
    .city-card,
    .safety-card,
    .step-card,
    .story-card {
        padding: 1.5rem;
    }

    .footer-links ul {
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Image optimization for mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Form inputs */
    input, textarea {
        padding: 0.75rem;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    /* Modal for mobile */
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-width: 100%;
    }

    /* Hero adjustments */
    .hero {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Section padding */
    section {
        padding: 3rem 0;
    }

    /* Text adjustments */
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Remove horizontal overflow */
    html, body {
        overflow-x: hidden;
    }

    /* Smooth touch scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
}