/* ============================================
   GIRLFRIEND FOR HIRE - Premium Styles
   Color Palette: Rose Gold, Deep Burgundy, Warm Neutrals
   ============================================ */

:root {
    --primary: #c2185b;
    --primary-dark: #880e4f;
    --primary-light: #f48fb1;
    --accent: #d4a574;
    --accent-light: #f5e6d3;
    --dark: #1a1a2e;
    --dark-soft: #2d2d44;
    --text: #333340;
    --text-light: #6b6b80;
    --text-muted: #9999aa;
    --bg: #fffbf7;
    --bg-alt: #fef5ee;
    --bg-card: #ffffff;
    --border: #f0e6dc;
    --gold: #d4a574;
    --star: #f5a623;
    --success: #43a047;
    --shadow: rgba(194, 24, 91, 0.08);
    --shadow-lg: rgba(26, 26, 46, 0.12);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    position: relative;
}

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

/* Section Badge */
.section-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo i {
    font-size: 1.6rem;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--accent-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.bar {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--accent-light) 50%, #fce4ec 100%);
    padding: 120px 40px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    display: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(194, 24, 91, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(194, 24, 91, 0.15);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.hero h1 em {
    color: var(--primary);
    font-style: italic;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-photo-wrapper {
    position: relative;
}

.hero-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

.hero-photo {
    width: 400px;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(194, 24, 91, 0.15);
}

.hero-placeholder {
    width: 400px;
    height: 480px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(194, 24, 91, 0.15);
}

.hero-placeholder i {
    font-size: 6rem;
    color: white;
    opacity: 0.5;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ============ SERVICES SECTION ============ */
.services {
    padding: 100px 0;
    background: var(--bg-card);
}

.services h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.services .section-badge {
    display: block;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--accent-light);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 8px;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.how-it-works h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.how-it-works .section-badge {
    display: block;
    text-align: center;
}

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

.step-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============ ABOUT SECTION ============ */
.about {
    padding: 100px 0;
    background: var(--bg-card);
}

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

.about-text .section-badge {
    display: inline-block;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight i {
    color: var(--success);
    font-size: 1.1rem;
}

.highlight span {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    width: 380px;
    height: 440px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(194, 24, 91, 0.15);
}

.about-placeholder i {
    font-size: 6rem;
    color: white;
    opacity: 0.5;
}

.about-photo {
    width: 380px;
    height: 440px;
    object-fit: cover;
    border-radius: 24px;
    border: 4px solid var(--accent);
    box-shadow: 0 30px 60px rgba(194, 24, 91, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(194, 24, 91, 0.2);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

.testimonials h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.testimonials .section-badge {
    display: block;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 3.5rem;
    color: var(--primary-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.4;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--star);
    font-size: 1rem;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.4rem;
    color: white;
}

.author-info h4 {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============ BOOKING SECTION ============ */
.booking {
    padding: 100px 0;
    background: var(--bg-card);
}

.booking h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.booking .section-badge {
    display: block;
    text-align: center;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary);
    margin-right: 6px;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 1.5rem;
}

/* ============ TRUST SECTION ============ */
.trust-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.trust-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.trust-section .section-badge {
    display: block;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

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

.trust-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.trust-icon i {
    font-size: 1.8rem;
    color: white;
}

.trust-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 100px 0;
    background: var(--bg-card);
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact .section-badge {
    display: block;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-item small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.faq-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.faq-section .section-badge {
    display: block;
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: white;
    padding: 3.5rem 0 0;
    margin-top: auto;
    position: relative;
    width: 100%;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    gap: 8px;
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.92rem;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-section p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}

.footer-section i {
    margin-right: 8px;
    color: var(--primary-light);
}

.footer-security {
    background: rgba(255,255,255,0.05);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.85rem;
}

.security-badge i {
    font-size: 1rem;
    color: var(--primary-light);
    margin-right: 0;
}

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

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============ FOCUS STATES ============ */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============ TOUCH TARGETS ============ */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============ RESPONSIVE: TABLET ============ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: var(--bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
        z-index: 999;
        height: calc(100vh - 65px);
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        font-size: 1.05rem;
        border-radius: 0;
    }
    
    .nav-menu .nav-link:hover {
        background-color: var(--accent-light);
        color: var(--primary);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 60px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2.5rem;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

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

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

    .hero-photo, .hero-placeholder {
        width: 300px;
        height: 360px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-photo, .about-placeholder {
        width: 300px;
        height: 350px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-logo {
        justify-content: center;
    }
}

/* ============ RESPONSIVE: MOBILE ============ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        top: 58px;
        height: calc(100vh - 58px);
    }
    
    .navbar {
        padding: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-photo, .hero-placeholder {
        width: 260px;
        height: 320px;
    }

    .about-photo, .about-placeholder {
        width: 260px;
        height: 300px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .services h2,
    .about-text h2,
    .booking h2,
    .contact h2,
    .testimonials h2,
    .how-it-works h2,
    .trust-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .service-card,
    .booking-form,
    .contact-item {
        padding: 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.75rem;
    }

    .security-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .testimonials {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 0.92rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============ PAYMENT MODAL ============ */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.payment-modal.show {
    display: flex;
    animation: modalFadeIn 0.35s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.payment-modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
}

.payment-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.payment-close:hover {
    color: var(--primary);
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-header .payment-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.payment-header .payment-icon i {
    color: white;
    font-size: 1.4rem;
}

.payment-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.payment-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.payment-option {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 16px;
    text-align: center;
}

.payment-option-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.payment-option-header > i {
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-option-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin: 0;
}

.discreet-badge {
    background: rgba(194, 24, 91, 0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discreet-badge i {
    margin-right: 3px;
    font-size: 0.68rem;
}

.payment-desc {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.btn-paypal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0070ba;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-paypal:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.3);
}

.payment-email {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-divider {
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

.payment-divider span {
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.btc-address-box {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    gap: 8px;
}

.btc-address-box code {
    flex: 1;
    font-size: 0.72rem;
    color: var(--text);
    word-break: break-all;
    font-family: 'Courier New', monospace;
    line-height: 1.4;
}

.btn-copy {
    background: var(--primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-copy:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.copy-confirm {
    color: var(--success);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.payment-footer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.payment-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.payment-footer i {
    color: var(--primary);
    margin-right: 4px;
}

/* Payment Modal Responsive */
@media (max-width: 600px) {
    .payment-modal-content {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .payment-header h3 {
        font-size: 1.35rem;
    }

    .payment-option {
        padding: 1.25rem 1rem;
    }

    .btc-address-box code {
        font-size: 0.65rem;
    }
}

/* End of styles */
