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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Luxury Background Pattern */
.luxury-background {
    position: fixed;
    inset: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 25% 25%, #d4af37 0%, transparent 50%), 
        radial-gradient(circle at 75% 75%, #f7c52d 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f7c52d, #d4af37, #b8860b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.crown-icon {
    width: 24px;
    height: 24px;
    color: #000000;
}

.brand-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f7c52d, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #f7c52d;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f7c52d, #d4af37);
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #d1d5db;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn:hover .hamburger {
    background: #f7c52d;
}

.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.active {
    max-height: 320px;
    opacity: 1;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-link:hover {
    color: #f7c52d;
    background: rgba(247, 197, 45, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 8rem 2rem 6rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Luxury Accent Elements */
.accent-dot {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.accent-dot-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8px;
    height: 8px;
    background: #f7c52d;
}

.accent-dot-2 {
    top: 10rem;
    right: 5rem;
    width: 4px;
    height: 4px;
    background: #d4af37;
    animation-delay: 1s;
}

.accent-dot-3 {
    bottom: 5rem;
    left: 25%;
    width: 6px;
    height: 6px;
    background: #b8860b;
    animation-delay: 2s;
}

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

.hero-content {
    text-align: center;
    margin-bottom: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(247, 197, 45, 0.2), rgba(184, 134, 11, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.sparkle-icon, .gem-icon {
    width: 20px;
    height: 20px;
    color: #f7c52d;
    animation: pulse 2s infinite;
}

.hero-badge span {
    color: #f7c52d;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff, #f3f4f6, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #ffd700, #f7c52d, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line-2::after {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f7c52d, #d4af37);
    border-radius: 50%;
    opacity: 0.2;
    animation: ping 2s infinite;
}

.hero-description {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: #d1d5db;
    max-width: 1200px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    font-weight: 300;
}

.highlight {
    color: #f7c52d;
    font-weight: 600;
    background: linear-gradient(135deg, #f7c52d, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-break {
    display: none;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Premium Form */
.form-container {
    order: 2;
}

.premium-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(0, 0, 0, 0.9), rgba(31, 41, 55, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.card-border-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent, rgba(212, 175, 55, 0.1));
    pointer-events: none;
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 10;
}

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

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f7c52d, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #9ca3af;
    font-size: 1rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.input-group {
    position: relative;
}

.form-input {
    width: 100%;
    height: 56px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0 1rem;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #6b7280;
}

.form-input:focus {
    outline: none;
    border-color: #f7c52d;
    box-shadow: 0 0 0 3px rgba(247, 197, 45, 0.3);
}

.input-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

.input-group:hover .input-glow {
    opacity: 1;
}

.phone-row {
    display: flex;
    gap: 1rem;
}

.country-select {
    width: 144px;
    height: 56px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0 1rem;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
}

.phone-input {
    flex: 1;
}

.premium-button {
    width: 100%;
    height: 64px;
    background: linear-gradient(135deg, #f7c52d, #d4af37, #b8860b);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.premium-button:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #ffd700, #f7c52d, #d4af37);
}

.button-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.premium-button:hover .button-shimmer {
    transform: translateX(100%);
}

.download-icon, .arrow-icon {
    width: 24px;
    height: 24px;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.shield-icon {
    width: 20px;
    height: 20px;
    color: #f7c52d;
}

/* Book Showcase */
.book-showcase {
    order: 1;
    display: flex;
    justify-content: center;
}

.book-container {
    position: relative;
}

.book-glow {
    position: absolute;
    inset: -2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(247, 197, 45, 0.4), rgba(184, 134, 11, 0.3));
    border-radius: 3rem;
    filter: blur(3rem);
    opacity: 0.6;
    animation: pulse 3s infinite;
}

.book-frame {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(0, 0, 0, 1), rgba(31, 41, 55, 0.9));
    padding: 3rem;
    border-radius: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.7s ease;
}

.book-frame:hover {
    transform: scale(1.05);
}

.corner-accent {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(212, 175, 55, 0.6);
}

.corner-tl {
    top: 1rem;
    left: 1rem;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 1rem;
    right: 1rem;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 1rem;
    left: 1rem;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 1rem;
    right: 1rem;
    border-left: none;
    border-top: none;
}

.book-cover {
    width: 384px;
    height: 480px;
    background: linear-gradient(135deg, #000000, #1f2937, #000000);
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(180deg, #f7c52d, #d4af37, #b8860b);
    opacity: 0.8;
}

.book-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.book-subtitle {
    color: #f7c52d;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2em;
}

.book-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffd700, #f7c52d, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1;
}

.book-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffd700, #f7c52d, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.5);
    position: relative;
}

.icon-inner {
    width: 144px;
    height: 144px;
    background: linear-gradient(135deg, #f7c52d, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-icon {
    width: 80px;
    height: 80px;
    color: #000000;
}

.sparkle {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
    animation: ping 2s infinite;
}

.sparkle-1 {
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
}

.sparkle-2 {
    bottom: -8px;
    left: -8px;
    width: 12px;
    height: 12px;
    animation-delay: 1s;
}

.book-edition {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.book-rating {
    font-size: 0.75rem;
    color: #f7c52d;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    position: relative;
}

.section-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent, rgba(212, 175, 55, 0.05));
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    color: #f7c52d;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.section-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

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

.about-content {
    order: 1;
}

.about-description {
    font-size: 1.5rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f7c52d, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

.feature-item span {
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #f7c52d, #d4af37, #b8860b);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.about-book {
    order: 2;
    display: flex;
    justify-content: center;
}

.about-book-glow {
    position: absolute;
    inset: -1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(247, 197, 45, 0.3), rgba(184, 134, 11, 0.2));
    border-radius: 2rem;
    filter: blur(2rem);
    opacity: 0.6;
    animation: pulse 3s infinite;
}

.about-book-cover {
    position: relative;
    width: 320px;
    height: 384px;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(0, 0, 0, 1), rgba(31, 41, 55, 0.9));
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
}

.about-book-content {
    text-align: center;
    padding: 2rem;
}

.about-book-subtitle {
    color: #f7c52d;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2em;
}

.about-book-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffd700, #f7c52d, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-book-icon {
    width: 128px;
    height: 128px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f7c52d, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.5);
    position: relative;
}

.about-book-icon svg {
    width: 64px;
    height: 64px;
    color: #000000;
}

.about-sparkle {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
    animation: ping 2s infinite;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
}

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

.features-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

.title-gold {
    background: linear-gradient(135deg, #ffd700, #f7c52d, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-white {
    color: #ffffff;
}

.features-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 1000px;
    margin: 0 auto 5rem;
    text-align: center;
    font-weight: 300;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.6), rgba(0, 0, 0, 0.8), rgba(31, 41, 55, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1.5rem;
    transition: all 0.7s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent, rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover .card-hover-effect {
    opacity: 1;
}

.feature-card-content {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.feature-icon-container {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(247, 197, 45, 0.3), rgba(184, 134, 11, 0.2));
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-card:hover .feature-icon-container {
    transform: scale(1.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: #f7c52d;
    transition: color 0.5s ease;
}

.feature-card:hover .feature-icon {
    color: #ffd700;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    transition: color 0.5s ease;
}

.feature-card:hover .feature-title {
    color: #f7c52d;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.5s ease;
}

.feature-card:hover .feature-description {
    color: #d1d5db;
}

.features-cta {
    text-align: center;
}

.main-cta-button {
    background: linear-gradient(135deg, #f7c52d, #d4af37, #b8860b);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
}

.main-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

/* Footer */
.luxury-footer {
    background: linear-gradient(90deg, #000000, #1f2937, #000000);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem;
    position: relative;
}

.footer-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent, rgba(212, 175, 55, 0.05));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f7c52d, #d4af37, #b8860b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.footer-icon .crown-icon {
    width: 28px;
    height: 28px;
    color: #000000;
}

.footer-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f7c52d, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-container {
        order: 1;
    }
    
    .book-showcase {
        order: 2;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-book {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .phone-row {
        flex-direction: column;
    }
    
    .country-select {
        width: 100%;
    }
    
    .book-cover {
        width: 300px;
        height: 375px;
    }
    
    .book-title {
        font-size: 3rem;
    }
    
    .book-icon {
        width: 120px;
        height: 120px;
    }
    
    .icon-inner {
        width: 108px;
        height: 108px;
    }
    
    .trending-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-book-cover {
        width: 280px;
        height: 350px;
    }
    
    .about-book-title {
        font-size: 2.5rem;
    }
    
    .about-book-icon {
        width: 100px;
        height: 100px;
    }
    
    .about-book-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .desktop-break {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 1rem 3rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .book-frame {
        padding: 2rem;
    }
    
    .book-cover {
        width: 250px;
        height: 312px;
    }
    
    .book-title {
        font-size: 2.5rem;
    }
    
    .book-icon {
        width: 100px;
        height: 100px;
    }
    
    .icon-inner {
        width: 90px;
        height: 90px;
    }
    
    .trending-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-book-cover {
        width: 240px;
        height: 300px;
    }
    
    .about-book-title {
        font-size: 2rem;
    }
    
    .feature-card-content {
        padding: 2rem;
    }
    .brand-icon img {
  display: block;
  margin: auto;
}

}