/* ==================== Reset & Base Styles ==================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.618;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}


/* ==================== Accessibility ==================== */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 0 10px 10px;
    z-index: 10001;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Reduce Motion for Users Who Prefer It */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .cursor-trail {
        display: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .feature-card,
    .pricing-card,
    .contact-item,
    .service-item,
    .responsibility-item {
        border-width: 2px;
    }
    
    a,
    button {
        text-decoration: underline;
    }
}

/* Screen Reader Only Class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== Particles & 3D Canvas ==================== */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

#canvas-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Keep it at 1 */
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2; /* Ensure all content is above canvas */
}


/* ==================== Header ==================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

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

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}


/* ==================== Hero Section ==================== */

.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
        transform: translateY(0);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.8));
        transform: translateY(-5px);
    }
}

.hero p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    border: none;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-btn:hover::before {
    width: 400px;
    height: 400px;
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.7);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(102, 126, 234, 0.6);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}


/* ==================== Stats Section ==================== */

.stats {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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


/* ==================== Features Section ==================== */

.features {
    padding: 8rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6rem;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    padding: 3.5rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.6);
    background: rgba(102, 126, 234, 0.05);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 800;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.1rem;
}


/* ==================== Pricing Section ==================== */

.pricing {
    padding: 8rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 35px;
    padding: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 40px 80px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.pricing-card.featured {
    border: 2px solid #667eea;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.5);
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.plan-price {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-period {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
}

.plan-features li {
    padding: 1.2rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.plan-features li:hover {
    color: white;
    transform: translateX(5px);
}

.plan-features li:before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
}

.plan-button {
    width: 100%;
    padding: 1.4rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s;
    border: 2px solid rgba(102, 126, 234, 0.6);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured .plan-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
}


/* ==================== Additional Services ==================== */

.pricing-services {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.pricing-services h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.service-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    font-weight: 600;
}

.service-price {
    color: #667eea;
    font-weight: 800;
    font-size: 1.1rem;
}


/* ==================== Client Responsibilities ==================== */

.client-responsibilities {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    text-align: center;
}

.client-responsibilities h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.responsibilities-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.responsibility-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.responsibility-item:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.resp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.responsibility-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.responsibility-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .responsibilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Client Responsibilities */
    .client-responsibilities {
        margin: 3rem auto 0;
        padding: 0 1.5rem;
    }

    .client-responsibilities h3 {
        font-size: 1.6rem;
    }

    .responsibilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .responsibility-item {
        padding: 1.5rem 1rem;
    }

    .resp-icon {
        font-size: 2rem;
    }

    .responsibility-item h4 {
        font-size: 1.1rem;
    }

    .responsibility-item p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact {
        padding: 5rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.6rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    /* Client Responsibilities */
    .responsibilities-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== Footer ==================== */

footer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    color: white;
    padding: 6rem 2rem 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-contact a:hover {
    color: #667eea;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: white;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: #667eea;
    transform: translateX(5px);
}

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


/* ==================== About Section ==================== */

.about {
    padding: 8rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

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

.about-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}


/* ==================== Contact Section ==================== */

.contact {
    padding: 8rem 2rem;
    position: relative;
    z-index: 3;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #667eea;
}

.contact-details a {
    display: block;
    margin-bottom: 0.3rem;
}

.contact-details a:last-child {
    margin-bottom: 0;
}

.contact-cta {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
}

.contact-cta h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}


/* ==================== Modal Styles ==================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 30px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    padding-right: 3rem;
}

.modal-content>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.form-group select option {
    background: #1a1a2e;
    color: white;
}

.form-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.form-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

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

.form-message {
    text-align: center;
    padding: 2rem;
}

.form-message.success .success-icon,
.form-message.error .error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.form-message.success .success-icon {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.form-message.error .error-icon {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.form-message h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-message p {
    color: rgba(255, 255, 255, 0.7);
}


/* ==================== Responsive ==================== */

/* Large Tablets & Small Laptops (1024px and below) */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

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

    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .about-container,
    .contact-container {
        gap: 3rem;
    }

    .responsibilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Header */
    nav {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: linear-gradient(135deg, #667eea, #764ba2);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: linear-gradient(135deg, #667eea, #764ba2);
    }

    /* Hero Section */
    .hero {
        margin-top: 70px;
        padding: 3rem 1.5rem;
        min-height: 80vh;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        border: none; /* Ensure no border on mobile */
    }

    .primary-btn {
        border: none !important; /* Force remove border */
    }

    /* Stats Section */
    .stats {
        padding: 4rem 1.5rem;
    }

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

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

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

    /* Section Titles */
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    /* Features Section */
    .features {
        padding: 5rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    /* Pricing Section */
    .pricing {
        padding: 5rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .featured-badge {
        top: 15px;
        right: 15px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 3.5rem;
    }

    .plan-features li {
        font-size: 1rem;
        padding: 1rem 0;
    }

    /* Additional Services */
    .pricing-services {
        margin: 3rem auto;
        padding: 0 1.5rem;
    }

    .pricing-services h3 {
        font-size: 1.6rem;
    }

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

    .service-item {
        padding: 1.2rem 1.5rem;
    }

    /* Client Responsibilities */
    .client-responsibilities {
        margin: 3rem auto 0;
        padding: 0 1.5rem;
    }

    .client-responsibilities h3 {
        font-size: 1.6rem;
    }

    .responsibilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .responsibility-item {
        padding: 1.5rem 1rem;
    }

    .resp-icon {
        font-size: 2rem;
    }

    .responsibility-item h4 {
        font-size: 1.1rem;
    }

    .responsibility-item p {
        font-size: 0.9rem;
    }

    /* About Section */
    .about {
        padding: 5rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content .section-title {
        text-align: center;
        font-size: 2.5rem;
    }

    .about-description {
        font-size: 1.1rem;
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stat-card {
        padding: 2rem;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    /* Contact Section */
    .contact {
        padding: 5rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.6rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 4rem 1.5rem 2rem;
    }

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

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-links {
        text-align: center;
    }

    /* Modal */
    .modal-overlay {
        padding: 1rem;
    }

    .modal-content {
        padding: 2rem;
        max-height: 85vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 2.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

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

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    /* Hero Section */
    h1 {
        font-size: 2rem;
    }

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

    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

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

    /* Features */
    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 2rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .plan-price {
        font-size: 3rem;
    }

    .plan-period {
        font-size: 1rem;
    }

    .plan-features li {
        font-size: 0.95rem;
    }

    /* Client Responsibilities */
    .responsibilities-grid {
        grid-template-columns: 1fr;
    }

    /* About Stats */
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    /* Modal */
    .modal-content {
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.8rem;
    }

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

    .primary-btn,
    .secondary-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.2rem;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .modal-content {
        max-height: 95vh;
    }
}
@media (max-width: 768px) {
    .mobile-cta-item {
        display: block !important;
        margin-top: 1rem;
    }

    .mobile-cta-item .cta-button {
        display: block !important;
    }
}