/* Elborneinc - Main Styles */

:root {
    --navy-blue: #03045E;
    --deep-blue: #0077B6;
    --bright-cyan: #00B4D8;
    --light-cyan: #90E0EF;
    --very-light-blue: #CAF0F8;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --border-color: #E0E0E0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Header Styles */
.main-header {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 72px;
    width: 72px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--bright-cyan);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--white);
    color: var(--deep-blue);
}

.cart-icon {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}

.cart-count {
    background-color: var(--bright-cyan);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    position: absolute;
    top: -8px;
    right: -8px;
}

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

.facebook-link {
    background-color: rgba(255, 255, 255, 0.1);
}

.facebook-link:hover {
    background-color: #1877f2;
    transform: scale(1.1);
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.75) 0%, rgba(3, 4, 94, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--bright-cyan);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff6a3d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--deep-blue);
}

.btn-secondary:hover {
    background-color: var(--very-light-blue);
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--deep-blue);
}

/* Featured Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.btn-link {
    color: var(--bright-cyan);
    text-decoration: none;
    font-weight: bold;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    font-size: 5rem;
    margin-bottom: 1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    min-height: 2.5rem;
}

.product-category {
    color: var(--deep-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
}

.product-details {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
}

.price {
    font-size: 1.5rem;
    color: var(--bright-cyan);
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: auto;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--very-light-blue);
}

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

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

.feature-icon {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

/* Customer Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
}

.rating {
    color: var(--bright-cyan);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    font-weight: bold;
    color: var(--deep-blue);
    margin-top: 1rem;
}

/* Footer */
.main-footer {
    background-color: var(--navy-blue);
    color: var(--white);
    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 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-image {
    height: 72px;
    width: 72px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-logo h3 {
    margin-bottom: 0;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--light-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background-color: var(--bright-cyan);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}


/* Products Page */
.products-page {
    padding: 2rem 0;
}

.products-filters {
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.search-box form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 0.8rem;
    padding-right: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.clear-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s;
}

.clear-search-btn:hover {
    color: var(--deep-blue);
}

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

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--deep-blue);
}

.filter-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.product-category {
    color: var(--deep-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-details {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Product Detail Page */
.product-detail {
    padding: 2rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-images {
    position: sticky;
    top: 2rem;
}

.main-image {
    margin-bottom: 1rem;
}

.product-image-large {
    font-size: 15rem;
    text-align: center;
    background-color: var(--very-light-blue);
    border-radius: 10px;
    padding: 2rem;
}

.image-gallery {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    font-size: 3rem;
    padding: 1rem;
    background-color: var(--very-light-blue);
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--deep-blue);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--bright-cyan);
}

.review-count {
    color: #666;
}

.price-large {
    font-size: 2.5rem;
    color: var(--bright-cyan);
    font-weight: bold;
    margin-bottom: 2rem;
}

.product-specifications ul {
    list-style: none;
    padding: 0;
}

.product-specifications li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.product-actions-detail {
    margin-top: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quantity-selector input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
}

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

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.reviews-section {
    margin-top: 3rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
    margin-left: 1rem;
}

/* Cart Page */
.cart-page {
    padding: 2rem 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 120px 1fr 40px;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.item-image {
    font-size: 3rem;
}

.item-details h3 {
    margin-bottom: 0.25rem;
}

.item-category {
    color: #666;
    font-size: 0.9rem;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    border-radius: 5px;
    cursor: pointer;
}

.item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 0.25rem;
}

.item-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.item-remove:hover {
    color: #ff0000;
}

.cart-summary {
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-divider {
    border-top: 2px solid var(--border-color);
    margin: 1rem 0;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--deep-blue);
}

.promo-code {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.promo-code input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-page {
    padding: 2rem 0;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group small {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.map-placeholder {
    background-color: var(--very-light-blue);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
}

.faq-section {
    margin-top: 3rem;
}

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

.faq-item {
    background-color: var(--very-light-blue);
    padding: 1.5rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

/* About Page */
.about-hero {
    padding: 3rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.placeholder-image {
    font-size: 10rem;
    text-align: center;
    background-color: var(--very-light-blue);
    padding: 3rem;
    border-radius: 10px;
}

.mission-section {
    background-color: var(--very-light-blue);
}

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

.mission-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.team-member {
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.member-photo {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.position {
    color: var(--bright-cyan);
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.experience {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.gallery-item {
    text-align: center;
}

.gallery-image {
    font-size: 8rem;
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Discounts Page */
.discount-banner {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #023e8a 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
}

.countdown-section {
    text-align: center;
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-blue);
    background-color: var(--very-light-blue);
    padding: 1rem 2rem;
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
}

.time-label {
    margin-top: 0.5rem;
    color: #666;
}

.time-separator {
    font-size: 3rem;
    color: var(--deep-blue);
    align-self: center;
}

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

.discount-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.discount-image {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--bright-cyan);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.discount-dates {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.early-access-section {
    background-color: var(--very-light-blue);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.early-access-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.early-access-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.terms-section {
    margin-top: 3rem;
}

.terms-content {
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 10px;
}

.terms-content h3 {
    color: var(--deep-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.terms-content ul {
    margin-left: 1.5rem;
}

/* Used Listings */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.listing-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
}

.listing-image {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.listing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.listing-seller {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.listing-details {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.listing-description {
    color: #666;
    margin-bottom: 1rem;
}

.safety-guidelines {
    margin-top: 3rem;
    background-color: var(--very-light-blue);
    padding: 3rem;
    border-radius: 10px;
}

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

.guideline-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
}

.guideline-card h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

/* Create Listing Form */
.listing-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-section h2 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.terms-box {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.terms-box ul {
    margin-left: 1.5rem;
}

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

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Auth Pages */
.auth-page {
    padding: 3rem 0;
    background-color: var(--very-light-blue);
    min-height: 70vh;
}

.auth-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.auth-box h1 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.auth-box p {
    color: #666;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.link {
    color: var(--deep-blue);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background-color: var(--white);
    padding: 0 1rem;
    color: #999;
}

.auth-alternative {
    text-align: center;
}

.auth-benefits {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.auth-benefits h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
}

.auth-benefits li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.auth-benefits li:last-child {
    border-bottom: none;
}

/* Success Page */
.success-page {
    padding: 4rem 0;
    text-align: center;
}

.success-message {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.page-actions {
    text-align: center;
    margin-bottom: 2rem;
}


/* Facebook Button */
.btn-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1877f2 !important;
}

.btn-facebook:hover {
    background-color: #145dbf !important;
}

.btn-facebook svg {
    flex-shrink: 0;
}


/* Services Page Styles */
.services-page {
    padding: 40px 0;
}

.service-banner {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0077BE 0%, #005a94 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 50px;
}

.service-banner h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.service-banner p {
    font-size: 1.2em;
    opacity: 0.95;
}

.service-categories {
    margin-bottom: 60px;
}

.service-categories h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #0077BE;
}

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

.service-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #0077BE;
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.1);
    transform: translateY(-5px);
}

.service-image {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0077BE;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF7F50;
    font-weight: bold;
}

.why-services {
    background: #f8f9fa;
    padding: 50px 20px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.why-services h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #0077BE;
}

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

.benefit {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 2.5em;
    color: #FF7F50;
    margin-bottom: 15px;
}

.benefit h3 {
    color: #0077BE;
    margin-bottom: 10px;
}

.benefit p {
    color: #666;
}

/* Appointment Form Styles */
.appointment-section {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.appointment-section h2 {
    text-align: center;
    color: #0077BE;
    font-size: 2em;
    margin-bottom: 10px;
}

.appointment-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.appointment-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077BE;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.alternative-contact {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.alternative-contact h3 {
    color: #0077BE;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .appointment-section {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-banner h1 {
        font-size: 1.8em;
    }
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
}

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

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* About Page Logo */
.about-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Contact Page Logo */
.contact-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    object-fit: contain;
}
