/* 
   =============================================
   Variables & Theme
   ============================================= 
*/
:root {
    --primary-color: #064e3b;      /* Dark Emerald Green */
    --primary-light: #047857;      /* Lighter Emerald */
    --primary-dark: #022c22;       /* Very Dark Emerald */
    --accent-color: #d4af37;       /* Gold */
    --accent-light: #f3c94f;
    --accent-dark: #b5952f;
    --bg-color: #fdfbf7;           /* Ivory White */
    --bg-light: #ffffff;
    --text-main: #2c3e50;          /* Light Black / Dark Blue-Gray */
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    --font-heading: 'Amiri', serif;
    --font-body: 'Cairo', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-pattern {
    background-color: var(--primary-dark);
    color: var(--bg-color);
    position: relative;
    z-index: 1;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z" fill="%23d4af37" fill-opacity="0.05" fill-rule="evenodd"/></svg>');
    z-index: -1;
    opacity: 0.5;
}

.bg-pattern h2, .bg-pattern h3, .bg-pattern h4, .bg-pattern p {
    color: var(--bg-color);
}

/* 
   =============================================
   Typography & Titles
   ============================================= 
*/
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.bg-pattern .section-title h2 {
    color: var(--accent-color);
}

.title-separator {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 20px;
    border-radius: 2px;
    position: relative;
}

.title-separator::before {
    content: '◈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 1.2rem;
    background-color: var(--bg-color);
    padding: 0 10px;
}

.bg-light .title-separator::before {
    background-color: var(--bg-light);
}

.bg-pattern .title-separator::before {
    background-color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* 
   =============================================
   Buttons
   ============================================= 
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-light);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-light);
}

.bg-pattern .btn-outline {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.bg-pattern .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* 
   =============================================
   Header & Navigation
   ============================================= 
*/
.header {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--accent-color);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Audio Controls in Header */
.audio-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.audio-note {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2px;
}

.audio-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.play-btn { color: var(--primary-color); }
.pause-btn { color: #e74c3c; }

.audio-btn:hover {
    transform: scale(1.05);
}

.hidden { display: none !important; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* 
   =============================================
   Hero Section
   ============================================= 
*/
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-light);
    overflow: hidden;
    text-align: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54.627 0l1.43 1.43-28.62 28.62L-1.183-1.183 0.247-2.613l27.19 27.19L54.627 0zM27.437 57.387L-1.183 28.767 0.247 27.337l28.62 28.62-1.43 1.43zm28.62-28.62L27.437 1.43l1.43-1.43 28.62 28.62-1.43 1.43zM56.057 60L27.437 31.38l1.43-1.43L57.487 58.57 56.057 60z" fill="%23d4af37" fill-opacity="0.05" fill-rule="evenodd"/></svg>');
    opacity: 0.6;
    animation: rotatePattern 120s linear infinite;
}

@keyframes rotatePattern {
    0% { transform: rotate(0deg) scale(1.5); }
    100% { transform: rotate(360deg) scale(1.5); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--bg-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: var(--accent-color);
}

.hero h2 {
    font-size: 1.8rem;
    color: var(--accent-light);
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-weight: 300;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 
   =============================================
   About Section
   ============================================= 
*/
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 10px;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover .image-decoration {
    top: -20px;
    left: -20px;
}

.about-text-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border-top: 5px solid var(--accent-color);
}

.quote-icon {
    position: absolute;
    top: -25px;
    right: 40px;
    font-size: 3rem;
    color: var(--accent-color);
    background-color: var(--bg-light);
    padding: 0 10px;
}

.about-text-box p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-main);
    text-align: justify;
}

/* 
   =============================================
   Features Section
   ============================================= 
*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(6, 78, 59, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--bg-light);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* 
   =============================================
   Services Section
   ============================================= 
*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-light), #f0f4f8);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    background: var(--bg-light);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-dark);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* 
   =============================================
   Pricing Section
   ============================================= 
*/
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.pricing-header {
    background-color: var(--primary-light);
    color: var(--bg-light);
    padding: 30px 20px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: var(--primary-color);
}

.pricing-header h3 {
    color: var(--accent-light);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.pricing-header h4 {
    color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.pricing-body {
    padding: 30px 20px;
    flex-grow: 1;
    color: var(--text-main);
}

.pricing-body ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-body ul li i {
    color: var(--accent-dark);
    margin-top: 5px;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.pricing-note p {
    color: var(--bg-light);
    font-size: 1.1rem;
}

/* 
   =============================================
   Quran Verses Section
   ============================================= 
*/
.quran-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.quran-card {
    background-color: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    transition: var(--transition);
}

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

.quran-decoration {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(6, 78, 59, 0.1);
    border-radius: 8px;
    pointer-events: none;
}

.verse-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.verse-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-dark);
    line-height: 1.8;
}

/* 
   =============================================
   Testimonials Section
   ============================================= 
*/
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.testimonial-avatar {
    font-size: 3rem;
    color: var(--primary-light);
}

.testimonial-meta h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.verified-badge {
    margin-right: auto;
    color: #25d366;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-main);
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: left;
}

.testimonial-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* 
   =============================================
   Booking Steps Section
   ============================================= 
*/
.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 35px;
    width: 2px;
    background-color: var(--accent-light);
    z-index: 1;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background-color: var(--primary-color);
    color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 4px solid var(--bg-color);
    box-shadow: var(--shadow-md);
}

.step-content {
    background-color: var(--bg-light);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-right: 30px;
    width: 100%;
    transition: var(--transition);
}

.step-content:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
    border-right: 4px solid var(--accent-color);
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.step-content p {
    margin: 0;
    color: var(--text-muted);
}

/* 
   =============================================
   Contact Section
   ============================================= 
*/
.contact-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-dark);
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-cta {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.contact-note {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-top: 20px;
    font-style: italic;
    background: rgba(6, 78, 59, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* 
   =============================================
   Footer
   ============================================= 
*/
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    padding: 40px 0;
    text-align: center;
}

.footer-message {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.footer-separator {
    width: 50px;
    height: 2px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 auto 20px;
}

.copyright {
    font-size: 1rem;
    opacity: 0.8;
}

/* 
   =============================================
   Floating Elements
   ============================================= 
*/
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

#scrollToTopBtn {
    position: fixed;
    bottom: 100px;
    left: 35px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTopBtn:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* 
   =============================================
   Animations
   ============================================= 
*/
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* 
   =============================================
   Responsive Design
   ============================================= 
*/
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    .audio-controls {
        order: 1;
        margin-right: auto;
        margin-left: 15px;
    }
    
    .nav-menu {
        width: 100%;
        display: none;
        order: 3;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.show {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-text-box {
        padding: 30px 20px;
    }
    
    .steps-container::before {
        right: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
        border-width: 3px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        left: 20px;
    }
    
    #scrollToTopBtn {
        bottom: 80px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* 
   =============================================
   Welcome Overlay
   ============================================= 
*/
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.welcome-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.welcome-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    max-width: 90%;
    box-shadow: var(--shadow-lg);
}

.welcome-content h2 {
    color: var(--accent-light);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.welcome-content h1 {
    color: var(--bg-light);
    font-size: 3rem;
    margin-bottom: 20px;
}

.welcome-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

body.no-scroll {
    overflow: hidden;
}
