/* CSS Variables */
:root {
    --primary: #c1ff00;
    --primary-dark: #a9e600;
    --secondary: #141414;
    --secondary-light: #1e1e1e;
    --text-color: #FFFFFF;
    --accent: #6D28D9;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary);
    direction: rtl;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-primary {
    color: var(--primary);
}

.required {
    color: var(--primary);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: var(--secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    padding: 0 1rem;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-icon {
    background: rgba(193, 255, 0, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

<div class="logo-badge hide-mobile">
  NF-Digital <svg>...</svg>
</div>

/* Desktop Navigation */
.desktop-nav {
    display: none;
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

/* Social Links */
.social-links {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

.social-links a {
    color: white;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: var(--secondary);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    gap: 0.25rem;
    padding: 0.5rem;
}

.hamburger {
    width: 1rem;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 1rem;
    padding: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    font-weight: 500;
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-800);
    width: 100%;
    margin-top: auto;
}

.mobile-social-links a {
    color: white;
    transition: color 0.3s ease;
}

.mobile-social-links a:hover {
    color: var(--primary);
}

/* Desktop Navigation Show */
@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .social-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    overflow: hidden;
    padding-top: 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-icon {
    background: rgba(193, 255, 0, 0.2);
    padding: 0.75rem;
    border-radius: 0.75rem;
    color: var(--primary);
}

.hero-badge h4 {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 32rem;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(193, 255, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

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

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(193, 255, 0, 0.5);
}

.feature-icon {
    background: rgba(193, 255, 0, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--primary);
    width: fit-content;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-400);
    margin: 0;
}

/* Stars Animation */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    background: var(--primary);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 4px var(--primary);
    animation: starAnimation 6s infinite ease-in-out;
}

.star:nth-child(1) { left: 5%; top: 15%; animation-delay: 0.5s; }
.star:nth-child(2) { left: 15%; top: 35%; animation-delay: 1.5s; }
.star:nth-child(3) { left: 25%; top: 55%; animation-delay: 2.5s; }
.star:nth-child(4) { left: 35%; top: 75%; animation-delay: 3.5s; }
.star:nth-child(5) { left: 45%; top: 25%; animation-delay: 4.5s; }
.star:nth-child(6) { left: 55%; top: 45%; animation-delay: 0s; }
.star:nth-child(7) { left: 65%; top: 65%; animation-delay: 1s; }
.star:nth-child(8) { left: 75%; top: 85%; animation-delay: 2s; }
.star:nth-child(9) { left: 85%; top: 5%; animation-delay: 3s; }
.star:nth-child(10) { left: 95%; top: 95%; animation-delay: 4s; }
.star:nth-child(11) { left: 10%; top: 80%; animation-delay: 0.7s; }
.star:nth-child(12) { left: 70%; top: 30%; animation-delay: 1.7s; }
.star:nth-child(13) { left: 80%; top: 50%; animation-delay: 2.7s; }
.star:nth-child(14) { left: 30%; top: 70%; animation-delay: 3.7s; }
.star:nth-child(15) { left: 40%; top: 90%; animation-delay: 4.7s; }

@keyframes starAnimation {
    0% {
        transform: scale(0) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1) translate(20px, -20px);
    }
    100% {
        transform: scale(0) translate(40px, -40px);
        opacity: 0;
    }
}

/* Section Styles */
.section {
    padding: 3rem 1rem;
    position: relative;
}

.section-card {
    background: var(--secondary-light);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-800);
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 25%, var(--secondary-light) 25%, var(--secondary-light) 50%, var(--secondary) 50%, var(--secondary) 75%, var(--secondary-light) 75%, var(--secondary-light) 100%);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
}

.section-card > * {
    position: relative;
    z-index: 10;
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-features,
.about-why,
.about-vision {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.about-features h3,
.about-why h3,
.about-vision h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-right: 1rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-icon {
    background: rgba(193, 255, 0, 0.2);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--primary);
    width: fit-content;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.service-highlight {
    color: var(--primary) !important;
    font-weight: 500;
    margin: 0 !important;
}

.additional-features {
    margin-top: 3rem;
}

.additional-features h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(20, 20, 20, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--primary);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.portfolio-item {
    background: var(--secondary);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
    group: hover;
}

.portfolio-item:hover {
    border-color: var(--primary);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.portfolio-content p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--secondary);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.testimonial-info h3 {
    font-weight: bold;
    font-size: 1.125rem;
}

.testimonial-role {
    color: var(--primary);
    font-size: 0.875rem;
    margin: 0;
}

.testimonial-quote {
    color: var(--primary);
    opacity: 0.5;
}

.testimonial-content {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-700);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.premium {
    border-color: var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.pricing-badge.basic {
    background: #22c55e;
    color: var(--secondary);
}

.pricing-badge.premium {
    background: var(--primary);
    color: var(--secondary);
}

.pricing-content {
    margin-top: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.pricing-prices {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.875rem;
    font-weight: bold;
}

.price-label {
    color: var(--gray-400);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-right: 1rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
}

.pricing-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.pricing-btn.basic {
    background: #22c55e;
    color: var(--secondary);
}

.pricing-btn.basic:hover {
    background: #16a34a;
    transform: scale(1.05);
}

.pricing-btn.premium {
    background: var(--primary);
    color: var(--secondary);
}

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

/* FAQ Section */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secondary-light);
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 1rem;
    color: var(--gray-300);
    line-height: 1.6;
    border-top: 1px solid var(--gray-700);
    margin: 0;
}

/* Contact Section */
.contact-form {
    max-width: 32rem;
    margin: 0 auto 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    background: var(--secondary);
    border: 1px solid var(--gray-700);
    border-radius: 0.375rem;
    padding: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.package-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.package-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--gray-700);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--secondary);
}

.package-option:hover {
    border-color: var(--primary);
}

.package-option input[type="radio"] {
    display: none;
}

.package-option input[type="radio"]:checked + .package-content {
    color: var(--primary);
}

.package-option:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: var(--secondary-light);
}

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

.package-name {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.package-description {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.submit-btn {
    background: var(--primary);
    color: var(--secondary);
    font-weight: bold;
    padding: 0.75rem 3rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading {
    pointer-events: none;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
}

.contact-info p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.contact-links a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--secondary-light);
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-800);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-left p {
    color: var(--gray-400);
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    left: 2rem;
    bottom: 7rem;
    background: #25D366;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1050;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    background: var(--secondary-light);
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    animation: fadeIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-icon {
    background: rgba(193, 255, 0, 0.2);
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.modal-body h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.modal-btn {
    background: var(--primary);
    color: var(--secondary);
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--primary-dark);
}

/* Accessibility Page */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-dark);
}

.page-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.accessibility-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accessibility-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.accessibility-section p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.accessibility-feature {
    margin-bottom: 1.5rem;
}

.accessibility-feature h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.accessibility-feature p {
    color: var(--gray-300);
    margin: 0;
}

.contact-details {
    margin: 1rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: var(--primary);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .package-selection {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-links {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .section-card {
        padding: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* Focus Styles for Accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-btn,
    .modal {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section-card {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}