* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #61e3f4;
    color: #070707;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: rgb(52, 200, 249);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.5rem;
    color: #141515;
}

.logo h1 i {
    color: #0c0d0d;
    margin-right: 8px;
}

.logo p {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Mobile Menu Button - FIXED */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #141515;
    padding: 8px;
    transition: color 0.3s;
}

.mobile-menu:hover {
    color: #4571ea;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000406;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e7ece5;
}

.user-greeting {
    color: #4571ea;
    font-weight: 600;
}

/* Buttons */
.btn-outline {
    border: 2px solid #4571ea;
    padding: 8px 20px;
    border-radius: 40px;
    background: transparent;
    color: #eceef3;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #4571ea;
    color: white;
}

.btn-primary {
    background: #4571ea;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #171818;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 119, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #4571ea;
    padding: 10px 24px;
    border-radius: 40px;
    color: #0f2b3d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #4571ea;
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eef2f6 0%, #ffffff 100%);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f2b3d;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content .highlight {
    color: #4571ea;
    display: block;
}

.hero-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat i {
    font-size: 2rem;
    color: #4571ea;
    margin-bottom: 0.5rem;
}

.stat h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f2b3d;
}

/* Services Section */
.services,
.pricing,
.about,
.contact {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #0f2b3d;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #4571ea;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #4571ea;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: #0f2b3d;
}

/* Pricing Section */
.pricing {
    background: #fefaf5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    border: 2px solid #4571ea;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4571ea;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4571ea;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: #4571ea;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card ul li i {
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f2b3d;
}

.about-content p {
    color: #111211;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #020202;
    font-weight: 500;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4571ea;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: #0f2b3d;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ea9d45;
}

/* Footer */
.footer {
    background: #0f2b3d;
    color: #cfdfed;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section a {
    display: block;
    color: #cfdfed;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    word-break: break-word;
}

.footer-section a:hover {
    color: #c9772e;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c4c6e;
    font-size: 0.85rem;
}

/* Auth Pages */
.auth-page {
    background: linear-gradient(135deg, #61e3f4 0%, #61e3f4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.back-home {
    position: absolute;
    left: 0;
    top: 0;
    text-decoration: none;
    color: #6b7280;
    font-size: 0.9rem;
}

.back-home:hover {
    color: #c9772e;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: #0f2b3d;
    margin-bottom: 0.5rem;
}

.auth-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.auth-form .form-group input,
.auth-form .form-group select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.auth-form .form-group i {
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: #9ca3af;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.auth-footer a {
    color: #c9772e;
    text-decoration: none;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

/* Notification styles */
.notification-toast {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 0.8;
}

/* Password strength */
.password-strength {
    font-size: 0.7rem;
    margin-top: 4px;
}

/* Remove file button */
.remove-file {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    margin-left: 8px;
    font-size: 0.8rem;
}

.remove-file:hover {
    opacity: 0.7;
}

/* Error message */
.error-message {
    color: #dc2626;
    font-size: 0.7rem;
    margin-top: 4px;
    display: block;
}

/* File preview container */
.file-preview {
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 0.85rem;
    display: none;
}

/* Rating stars */
.rating-stars i {
    cursor: pointer;
    font-size: 1.2rem;
    margin-right: 4px;
    transition: color 0.2s;
}

.rating-stars i.far {
    color: #cbd5e1;
}

.rating-stars i.fas {
    color: #fbbf24;
}

/* ======================================== */
/* RESPONSIVE DESIGN - FIXED */
/* ======================================== */

/* Tablet and Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Show mobile menu button */
    .mobile-menu {
        display: block;
    }

    /* Hide navigation links by default on mobile */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        gap: 1rem;
        align-items: flex-start;
    }

    /* Show when active class is added */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 0.5rem 0;
    }

    .user-greeting {
        width: 100%;
    }

    /* Hero section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Pricing card */
    .pricing-card.featured {
        transform: scale(1);
    }

    .about-content h2 {
        font-size: 1.6rem;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .logo p {
        font-size: 0.7rem;
    }

    .mobile-menu {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 8px 16px;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-stats {
        padding: 1rem;
        gap: 0.5rem;
    }

    .stat h3 {
        font-size: 1.2rem;
    }

    .stat i {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title:after {
        width: 50px;
        height: 3px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card,
    .pricing-card {
        padding: 1.25rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-card ul li {
        font-size: 0.9rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .features {
        gap: 1rem;
    }

    .features div {
        font-size: 0.85rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.25rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-item i {
        font-size: 1.25rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    .auth-container {
        padding: 12px;
    }

    .auth-card {
        padding: 1.25rem;
    }

    .back-home {
        font-size: 0.8rem;
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .auth-header {
        margin-top: 0.5rem;
    }

    .auth-header h2 {
        font-size: 1.3rem;
    }

    .auth-footer {
        font-size: 0.85rem;
    }

    .alert {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* Small phones */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .stat {
        min-width: 70px;
    }

    .stat h3 {
        font-size: 1rem;
    }

    .stat i {
        font-size: 1.2rem;
    }
}

/* Touch-friendly targets */
@media (max-width: 768px) {

    button,
    a,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .nav-links a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent zoom on focus for iOS */
@media (max-width: 768px) {

    input,
    select,
    textarea,
    button {
        font-size: 16px;
    }
}

/* Images responsiveness */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove tap highlight */
button,
a,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
}
