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

:root {
    --primary-color: #ff1493;
    --secondary-color: #ff69b4;
    --accent-color: #ff85c1;
    --dark-color: #2d2d2d;
    --light-color: #fff5f8;
    --text-color: #333;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    --shadow: 0 4px 20px rgba(255, 20, 147, 0.15);
    --shadow-hover: 0 8px 30px rgba(255, 20, 147, 0.25);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 16px;
}

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

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo .brand-name {
    display: flex;
    gap: 8px;
}

.logo .brand-chevbet {
    color: var(--primary-color);
}

.logo .brand-cleaning {
    color: var(--dark-color);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Professional cleaning team image from real cleaning companies */
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9) 0%, rgba(255, 105, 180, 0.9) 100%),
                url('https://thecleanstart.com/wp-content/uploads/2021/07/Office-Cleaning-Crew.jpg') center/cover no-repeat;
    color: var(--white);
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Buttons */
.btn {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
    background: #e91280;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

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

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Services Section */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 18px;
}

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

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card .btn {
    margin-top: auto;
    font-size: 0.9rem;
    padding: 12px 28px;
}

/* About Section */
.about {
    background: var(--light-color);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1585421514738-01798e348b17?w=800&q=80') center/cover no-repeat;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.8) 0%, rgba(255, 105, 180, 0.8) 100%);
    border-radius: 20px;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.7) 0%, rgba(80, 200, 120, 0.7) 100%);
    border-radius: 10px;
}

.about-image .image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: white;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: white;
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
}

/* Contact Form */
.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Quote Section */
.quote-section {
    background: var(--white);
}

.quote-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
    border: 2px solid rgba(255, 20, 147, 0.1);
}

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

.quote-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.15);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 18px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-group label:hover {
    background: rgba(255, 20, 147, 0.1);
    transform: translateX(5px);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.quote-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.photo-preview-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.photo-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.photo-preview-item .remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Admin Login Page */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    padding: 20px;
}

.admin-login-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
}

.admin-logo {
    text-align: center;
    margin-bottom: 30px;
}

.admin-logo i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.admin-logo h1 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.admin-logo p {
    color: #666;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.input-with-icon input {
    padding-left: 40px;
}

.error-message {
    background: #fee;
    color: #c00;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.admin-footer {
    text-align: center;
    margin-top: 20px;
}

.admin-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Admin Dashboard */
.admin-dashboard {
    display: flex;
    height: 100vh;
    background: #f5f7fa;
}

.admin-sidebar {
    width: 260px;
    background: var(--dark-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.admin-sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-header i {
    color: var(--secondary-color);
}

.admin-nav {
    flex: 1;
    padding: 20px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.admin-nav-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.admin-nav-item i {
    font-size: 1.2rem;
}

.admin-nav-item .badge {
    margin-left: auto;
    background: var(--secondary-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.admin-sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-logout {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.admin-main {
    flex: 1;
    overflow: auto;
}

.admin-header {
    background: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-header h1 {
    color: var(--dark-color);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.admin-user i {
    font-size: 2rem;
    color: var(--primary-color);
}

.admin-content {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-view {
    display: none;
}

.admin-view.active {
    display: block;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.15);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin: 0;
}

.stat-card p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 1rem;
}

.admin-table-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid var(--light-color);
}

.table-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--light-color);
    background: linear-gradient(to right, #fff5f8, #ffffff);
}

.table-header h2 {
    color: var(--primary-color);
    margin: 0;
}

.filter-controls {
    display: flex;
    gap: 15px;
}

.filter-controls select {
    padding: 10px 15px;
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.filter-controls select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--light-color);
}

.admin-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 20px;
    border-bottom: 1px solid var(--light-color);
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: background-color 0.2s ease;
}

.admin-table tbody tr:hover {
    background: #fff5f8;
}

.contact-info {
    font-size: 0.9rem;
}

.contact-info div {
    margin-bottom: 8px;
}

.contact-info i {
    color: var(--primary-color);
    width: 18px;
    margin-right: 5px;
}

.services-list {
    font-size: 0.9rem;
    max-width: 250px;
    line-height: 1.6;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-responded {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-icon:hover {
    background: var(--light-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: var(--white);
    margin: 50px auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-large {
    max-width: 950px;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.quote-details-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.detail-section {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.detail-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detail-section p {
    margin-bottom: 10px;
}

.services-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.photo-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.response-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-color);
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.contact-details {
    margin: 20px 0;
}

.message-box {
    background: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.settings-container {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.settings-info {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .admin-dashboard {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        height: auto;
    }
    
    .admin-nav {
        display: flex;
        overflow-x: auto;
        padding: 0;
    }
    
    .admin-nav-item {
        flex-direction: column;
        text-align: center;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .table-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-controls {
        width: 100%;
        flex-direction: column;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 5px;
    }
}

/* Email Inbox Styles */
.inbox-info-panel {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.inbox-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inbox-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.15);
}

.inbox-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.inbox-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.inbox-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
}

.inbox-credentials {
    background: var(--light-color);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 2px solid #f0f0f0;
}

.inbox-credentials p {
    margin: 12px 0;
    font-family: monospace;
    font-size: 0.95rem;
}

.inbox-credentials strong {
    color: var(--dark-color);
    font-weight: 600;
}

.inbox-credentials a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.inbox-credentials a:hover {
    text-decoration: underline;
}

.email-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.setting-group {
    background: var(--light-color);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
}

.setting-group h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.setting-group p {
    margin: 8px 0;
    font-size: 0.9rem;
}

.mobile-options {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.mobile-options li {
    padding: 12px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--light-color);
}

.mobile-options li:last-child {
    border-bottom: none;
}

.mobile-options i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Inbox list / detail layout */
.inbox-split {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    padding: 25px;
}

.inbox-list-pane {
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--light-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inbox-list-actions {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--light-color);
}

.inbox-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    overflow-y: auto;
    height: 520px;
}

.email-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 12px;
    border-radius: 10px;
    cursor: pointer;
    gap: 12px;
    transition: background 0.18s ease, transform 0.12s ease;
}

.email-item:not(.no-data):hover { background: #fff5f8; transform: translateX(4px); }
.email-item.unread { background: linear-gradient(90deg, rgba(255,20,147,0.03), transparent); border-left: 4px solid var(--primary-color); }
.email-left { flex: 1; min-width: 0; }
.email-subject { display: block; color: var(--dark-color); font-weight: 700; margin-bottom: 6px; }
.email-snippet { color: #666; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.email-right { text-align: right; margin-left: 12px; }
.email-from { display: block; font-weight: 600; color: var(--primary-color); }
.email-date { color: #999; font-size: 0.8rem; }

.inbox-detail-pane { background: var(--white); border-radius: 12px; border: 2px solid var(--light-color); padding: 18px; min-height: 520px; }
.email-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: #aaa; gap: 12px; }
.email-placeholder i { font-size: 3rem; color: var(--light-color); }
.email-detail-header { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:12px; }
.email-detail-actions .btn { margin-left:8px; }
.email-meta { color:#777; margin-bottom:18px; }
.email-body { white-space: pre-wrap; color: var(--text-color); line-height:1.6; }
.email-pre { font-family: inherit; white-space: pre-wrap; }

@media (max-width: 900px) {
    .inbox-split { grid-template-columns: 1fr; }
    .inbox-list { height: 360px; }
    .inbox-detail-pane { min-height: 300px; }
}
