/* Form Styles */
/* Contact Form */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.contact-form select,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 10px auto;
    cursor: pointer;
    padding-right: 2.5rem;
}

.contact-form select:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5a2b;
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #444;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f8f8f8;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-label:hover .checkmark {
    border-color: #8b5a2b;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #8b5a2b;
    border-color: #8b5a2b;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Stack form fields on mobile */
@media (max-width: 992px) {
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-row .form-group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .form-row .form-group:last-child {
        margin-bottom: 0;
    }
    
    /* Force full width on mobile for all form controls */
    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row input[type="tel"],
    .form-row select,
    .form-row textarea {
        width: 100% !important;
        box-sizing: border-box;
    }
}

/* Form Submit Button */
.contact-form button[type="submit"] {
    background-color: #8b5a2b;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form button[type="submit"]:hover {
    background-color: #744a24;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Consultation Benefits */
.consultation-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    width: 100%;
    max-width: 500px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    width: 100%;
}

.benefit-item i {
    color: #8b5a2b;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Center section on all screens */
.form-intro {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}


/* Contact Form Section - Mobile First */
.contact-form-section .container {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.contact-form-content {
    display: block;
    width: 100%;
}

.contact-form-content > * {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.consultation-benefits {
    margin: 1.5rem 0 0;
    text-align: left;
    display: block;
}

/* Tablet and up */
@media (min-width: 768px) {
    .contact-form-section .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .contact-form-section .container {
        max-width: 1200px;
    }
    
    .contact-form-content {
        display: flex;
        gap: 3rem;
        align-items: flex-start;
    }
    
    .form-intro {
        flex: 1;
    }
    
    .contact-form-wrapper {
        flex: 1;
        margin: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
@keyframes modalFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.3s ease-out;
}

.modal.closing {
    animation: modalFadeOut 0.2s ease-in;
}

.modal-content {
    background: white;
    border-radius: 0; /* Removed border radius for sharp corners */
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 transparent;
}

/* Webkit browsers (Chrome, Safari, newer versions of Edge) */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
    margin: 8px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background-color: #d0d0d0;
}

/* Firefox */
@supports (scrollbar-width: thin) {
    .modal-content {
        scrollbar-width: thin;
        scrollbar-color: #e0e0e0 transparent;
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 20px;
}

/* Order items in modal */
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.order-item > span:last-child {
    white-space: nowrap;
    margin-left: 10px;
}

.order-item:last-child {
    border-bottom: none;
}

/* Form elements in modal */
.modal .form-group {
    margin-bottom: 15px;
}

/* Add extra space above the Place Order button */
.modal .btn-primary[type="submit"] {
    margin-top: 30px;
}

.modal .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Footer Styles */
.footer {
    background-color: color-mix(in srgb, var(--dark-bg) 60%, white);
    color: var(--light-text);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-section p {
    color: white;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    opacity: 0.8;
}

.footer-section a:hover {
    color: white !important;
    opacity: 1;
    transform: translateX(5px);
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

/* Social Links - Hidden */
.social-links {
    display: none !important;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    transform: none !important;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info i {
    margin-top: 0.25rem;
    color: var(--primary-color);
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }

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

:root {
    /* Color System */
    --primary-color: #0f172a;
    --primary-light: #1e293b;
    --primary-dark: #020617;
    
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    
    --accent-color: #7c3aed;
    --accent-light: #8b5cf6;
    --accent-dark: #5b21b6;
    
    --success-color: #059669;
    --warning-color: #f59e0b;
    --error-color: #dc2626;
    
    --neutral-100: #ffffff;
    --neutral-200: #f8fafc;
    --neutral-300: #e2e8f0;
    --neutral-400: #cbd5e1;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing System (8px base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 6px rgba(26, 26, 46, 0.12);
    --shadow-lg: 0 10px 15px rgba(26, 26, 46, 0.15);
    --shadow-xl: 0 20px 25px rgba(26, 26, 46, 0.20);
    
    /* Border Radius */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--neutral-100);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--neutral-800);
}

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

p {
    margin-bottom: var(--space-md);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog CTA Buttons */
.article-cta .btn-primary {
    background-color: var(--primary-color);
    color: white;
    margin-right: 1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.article-cta .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: white;
}

.article-cta .btn-outline {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.article-cta .btn-outline:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: white;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--neutral-100);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    margin: 0 auto;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--neutral-100);
    transform: translateY(-2px);
}

/* Logo */
.logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

/* Footer logo specific */
.footer-logo .logo-img {
    max-height: 80px; /* Slightly smaller in footer */
}

/* Header */
.header {
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
}

.logo i {
    color: var(--secondary-color);
    margin-right: var(--space-sm);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--neutral-700);
    cursor: pointer;
    position: relative;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.cart-btn:hover {
    background-color: var(--neutral-200);
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--error-color);
    color: var(--neutral-100);
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    min-width: 18px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--neutral-700);
    cursor: pointer;
    padding: var(--space-sm);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    transition: left var(--transition-normal);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    background-color: var(--neutral-100);
    width: 280px;
    height: 100%;
    padding: var(--space-xl);
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-700);
}

.mobile-nav {
    margin-top: var(--space-3xl);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-md) 0;
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    border-bottom: 1px solid var(--neutral-300);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--neutral-100);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: right var(--transition-normal);
}

.cart-sidebar.active {
    right: 0;
}

.cart-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--neutral-300);
}

.cart-header h3 {
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--neutral-700);
    padding: var(--space-sm);
}

.cart-items {
    flex: 1;
    padding: var(--space-xl);
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--neutral-500);
    margin-top: var(--space-2xl);
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--neutral-300);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-info {
    flex: 1;
}

.category-card img {
    width: 100%;
}

.category-card .btn {
    margin: auto var(--space-xl) var(--space-xl);
    align-self: center;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    padding: var(--space-xs);
}

.cart-footer {
    padding: var(--space-xl);
    border-top: 1px solid var(--neutral-300);
}

.cart-total {
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.article-header,
.page-header,
.hero-section {
    padding-top: 80px;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) translateZ(0);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    visibility: hidden;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) translateZ(0);
    visibility: visible;
}

.slide:hover {
    transform: scale(1.01) translateZ(0);
    transition: transform 0.3s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(30, 41, 59, 0.3));
}

.slide-content {
    position: relative;
    text-align: center;
    color: var(--neutral-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 var(--space-md);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    line-height: 1.1;
    text-align: center;
}

.slide-text {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    opacity: 0.95;
    text-align: center;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-xl);
    z-index: 10;
}

.hero-prev,
.hero-next {
    background-color: rgba(245, 158, 11, 0.9);
    border: none;
    color: var(--neutral-100);
    font-size: 1.5rem;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.dot {
    width: 16px;
    height: 4px;
    border-radius: var(--radius-sm);
    background-color: rgba(245, 158, 11, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--secondary-color);
    width: 32px;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-2xl);
    color: var(--primary-color);
}

/* Categories Section */
.categories {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-200);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.category-card {
    background-color: var(--neutral-100);
    padding: 0;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    width: 100%;
    height: 250px;
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1.5;
    transition: transform var(--transition-normal);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    margin: var(--space-xl) var(--space-xl) var(--space-md);
    color: var(--primary-color);
}

.category-card p {
    color: var(--neutral-600);
    margin: 0 var(--space-xl) var(--space-lg);
}

/* Gallery Section */
.gallery {
    padding: var(--space-3xl) 0;
}

.masonry-gallery {
    columns: 4;
    column-gap: var(--space-md);
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .masonry-gallery {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .masonry-gallery {
        columns: 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    break-inside: avoid;
    background: var(--neutral-100);
    display: inline-block;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #ffffff;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
    color: var(--neutral-100);
    padding: var(--space-xl);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #ffffff;
}

/* Services Section */
.services {
    padding: var(--space-2xl) 0;
    background-color: var(--neutral-200);
}

.services-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 400px; /* Reduced from 500px */
    overflow: hidden;
}

/* Pause autoplay on hover */
.services-slider:hover .service-slide {
    transition-duration: 0.8s;
}

.service-slide {
    position: absolute;
    opacity: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(50px);
    visibility: hidden;
}

.service-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: 0;
}

.service-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 0;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.service-info p {
    margin-bottom: var(--space-lg);
    color: var(--neutral-600);
}

.service-info ul {
    list-style: none;
}

.service-info li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-lg);
}

.service-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.services-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: 0;
}

.service-prev,
.service-next {
    background-color: var(--primary-color);
    border: none;
    color: var(--neutral-100);
    font-size: 1.25rem;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.service-prev:hover,
.service-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Latest Additions */
.latest-additions {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-200);
    overflow: hidden;
    position: relative;
}

.latest-additions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.latest-controls {
    display: flex;
    gap: var(--space-md);
}

.latest-prev,
.latest-next {
    background-color: var(--primary-color);
    border: none;
    color: var(--neutral-100);
    font-size: 1.25rem;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.latest-prev:hover,
.latest-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Metrics Section */
.metrics {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    padding: 2rem 1rem;
    position: relative;
}

.metric-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.2;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Contact Section */
.quick-contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.contact-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.contact-item span,
.contact-item a {
    line-height: 1.4;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0.5rem;
}

.contact-item i {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Limited Time Offer */
.limited-offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm58-60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-56 6c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm0 16c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54-70c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-50 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="rgba(255,255,255,0.1)" fill-rule="evenodd"/></svg>');
    opacity: 0.1;
}

.offer-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.limited-offer h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.limited-offer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-card:nth-child(2n)::after {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .limited-offer h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metric-card {
        padding: 1.5rem 1rem;
    }
    
    .metric-card::after {
        display: none;
    }
    
    .limited-offer {
        padding: 4rem 1rem;
    }
    
    .limited-offer h2 {
        font-size: 1.8rem;
    }
    
    .offer-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Latest News Section */
.latest-news {
    padding: 6rem 0;
    background-color: #f9fafb;
}

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

.news-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.8rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news-date {
    color: var(--primary-color);
    font-weight: 500;
}

.news-category {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-card h3 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card h3 a:hover {
    color: var(--primary-color);
}

.news-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

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

.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--primary-dark);
    transform: rotateY(180deg);
}

.advantage-card h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Infinite Slider */
.infinite-slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.5s ease;
    will-change: transform;
}

.product-card {
    flex: 0 0 300px;
    background-color: var(--neutral-100);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: var(--space-md);
    margin: 0;
    font-size: 1.125rem;
}

.product-card .price {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

/* Category Showcases */
.category-showcases {
    padding: var(--space-3xl) 0;
}

.category-showcase {
    margin-bottom: var(--space-3xl);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.showcase-controls {
    display: flex;
    gap: var(--space-md);
}

.showcase-prev,
.showcase-next {
    background-color: var(--primary-color);
    border: none;
    color: var(--neutral-100);
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.showcase-prev:hover,
.showcase-next:hover {
    background-color: var(--primary-dark);
}

.showcase-slider {
    position: relative;
    overflow: hidden;
}

.showcase-track {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.5s ease;
    align-items: stretch;
}

.showcase-item {
    flex: 0 0 280px;
    background-color: var(--neutral-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.showcase-info {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
    min-height: 220px;
}
.showcase-info h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.125rem;
}

.showcase-info p {
    color: var(--neutral-600);
    margin-bottom: 0;
    font-size: 0.875rem;
}
.showcase-info .price {
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: auto;
}

.view-all-btn {
    margin-top: var(--space-lg);
    text-align: center;
}

/* Contact Page Styles */
.contact-info-section {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-200);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.contact-card {
    background-color: var(--neutral-100);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-lg);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.contact-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-sm);
}

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

.contact-card a:hover {
    color: var(--secondary-color);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--neutral-500);
    font-style: italic;
}

.contact-form-section {
    padding: var(--space-3xl) 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.form-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.form-intro p {
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    font-size: 1.125rem;
    line-height: 1.6;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: #000000;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.benefit-item span {
    color: #000000;
    font-weight: 500;
}

.contact-form-wrapper {
    background-color: var(--neutral-200);
    padding: var(--space-2xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

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

.checkmark {
    color: var(--neutral-700);
}

.faq-section {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-200);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.faq-item {
    background-color: var(--neutral-100);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

.map-section {
    padding: var(--space-3xl) 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.map-info p {
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.detail-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: var(--space-xs);
    flex-shrink: 0;
}

.detail-item div {
    color: var(--neutral-700);
    line-height: 1.5;
}

.detail-item strong {
    color: var(--primary-color);
}

.map-placeholder {
    background-color: var(--neutral-200);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-frame {
    text-align: center;
    color: var(--neutral-600);
}

.map-frame i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-lg);
}

.map-frame h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.map-frame p {
    margin-bottom: var(--space-lg);
}

/* Blog Page Styles */
.featured-article {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-200);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    background-color: var(--secondary-color);
    color: var(--neutral-100);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-info h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: 2rem;
}

.featured-info h2 a {
    color: inherit;
    text-decoration: none;
}

.featured-info h2 a:hover {
    color: var(--secondary-color);
}

.featured-info p {
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-size: 1.125rem;
}

.blog-categories {
    padding: var(--space-3xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.category-filter-card {
    background-color: var(--neutral-100);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.category-filter-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-filter-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-lg);
}

.category-filter-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.category-filter-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-md);
}

.article-count {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.recent-articles {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-200);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.article-card {
    background-color: var(--neutral-100);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: var(--primary-color);
    color: var(--neutral-100);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: var(--space-xl);
}

.article-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.article-date,
.article-author {
    position: relative;
}

.article-date::after {
    content: '•';
    margin-left: var(--space-md);
    color: var(--neutral-400);
}

.article-content h3 {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.article-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.article-content h3 a:hover {
    color: var(--secondary-color);
}

.article-content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.tag {
    background-color: var(--neutral-300);
    color: var(--neutral-700);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: color var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more i {
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(4px);
}

.article-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--neutral-100);
    padding: var(--space-3xl) 0;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-header h1 {
    color: var(--neutral-100);
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    font-size: 0.875rem;
    opacity: 0.8;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.article-featured-image {
    padding: var(--space-2xl) 0;
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}


.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
    max-width: 1200px;
}

.article-body {
    max-width: none;
}

.article-body h2 {
    color: var(--primary-color);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    font-size: 2rem;
}

.article-body h3 {
    color: var(--primary-color);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.article-body p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--neutral-700);
}

.article-body ul,
.article-body ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.article-body li {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    color: var(--neutral-700);
}

.article-body blockquote {
    background-color: var(--neutral-200);
    border-left: 4px solid var(--secondary-color);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--neutral-100);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--space-3xl);
}

.article-cta h3 {
    color: var(--neutral-100);
    margin-bottom: var(--space-md);
}

.article-cta p {
    color: var(--neutral-100);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.article-cta .btn {
    margin: 0 var(--space-sm);
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--neutral-100);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.sidebar-widget h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

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

.checklist li {
    padding: var(--space-sm) 0;
    color: var(--neutral-700);
    font-size: 0.875rem;
}

.related-article {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.related-article img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.related-content h5 {
    margin: 0 0 var(--space-xs);
    font-size: 0.875rem;
    line-height: 1.4;
}

.related-content h5 a {
    color: var(--primary-color);
    text-decoration: none;
}

.related-content h5 a:hover {
    text-decoration: underline;
}

.related-date {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sidebar-newsletter input {
    padding: var(--space-sm);
    border: 1px solid var(--neutral-400);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.sidebar-newsletter .btn {
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-md);
}

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

.category-list li {
    margin-bottom: var(--space-sm);
}

.category-list a {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.category-list a:hover {
    color: var(--primary-color);
}

/* Blog responsive */
@media (max-width: 1023px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-lead {
        font-size: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .article-featured-image img {
        height: 250px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
}

.blog-newsletter {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--neutral-100);
}

.blog-newsletter .newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.blog-newsletter .newsletter-info h2 {
    color: var(--neutral-100);
    margin-bottom: var(--space-lg);
}

.blog-newsletter .newsletter-info p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.blog-newsletter .newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.blog-newsletter .benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.blog-newsletter .benefit-item i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.blog-newsletter .benefit-item span {
    opacity: 1;
    color: white;
}

.newsletter-form-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    position: relative;
}

.newsletter-success {
    text-align: center;
    color: white;
    padding: var(--space-xl) 0;
}

.newsletter-success i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}

.newsletter-success h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.newsletter-success p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.blog-newsletter .form-group {
    margin-bottom: 0;
}

.blog-newsletter .form-group input {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--neutral-100);
    font-size: 1rem;
}

.blog-newsletter .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-newsletter .form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* Legal Pages Styles */
.legal-content {
    padding: var(--space-3xl) 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--neutral-100);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

.document-meta {
    background-color: var(--neutral-200);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.document-meta p {
    margin-bottom: var(--space-sm);
    color: var(--neutral-700);
}

.document-meta p:last-child {
    margin-bottom: 0;
}

.document-section {
    margin-bottom: var(--space-2xl);
}

.document-section:last-child {
    margin-bottom: 0;
}

.document-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--secondary-color);
}

.document-section h3 {
    color: var(--primary-color);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.document-section p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.document-section ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.document-section li {
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.contact-details {
    background-color: var(--neutral-200);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.contact-details p {
    margin-bottom: var(--space-md);
}

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

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

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Category Showcases - Updated for 4 images */
.category-showcases {
    padding: var(--space-3xl) 0;
}

.category-showcase {
    margin-bottom: var(--space-3xl);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.showcase-controls {
    display: flex;
    gap: var(--space-md);
}

.showcase-prev,
.showcase-next {
    background-color: var(--primary-color);
    border: none;
    color: var(--neutral-100);
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.showcase-prev:hover,
.showcase-next:hover {
    background-color: var(--primary-dark);
}

.showcase-slider {
    position: relative;
    overflow: hidden;
}

.showcase-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    transition: transform 0.5s ease;
}

.showcase-item {
    background-color: var(--neutral-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.showcase-info {
    padding: var(--space-lg);
}

.showcase-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.showcase-info p {
    color: var(--neutral-600);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
}

.showcase-info .price {
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 600;
}

.view-all-btn {
    margin-top: var(--space-lg);
    text-align: center;
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--light-text);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.footer-section {
    padding: 0 0.5rem;
    position: relative;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 1.5rem 0;
    font-size: 1.05rem;
    font-weight: 300;
}

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

.social-links a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

.footer-heading {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    transform: translateX(5px);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--neutral-300);
    line-height: 1.6;
}

.contact-item i {
    color: white;
    margin-top: 0.25rem;
}

.contact-item a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.newsletter-form {
    margin-top: 1.5rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    border-radius: 4px;
}

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

.newsletter-form button {
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright {
    color: var(--neutral-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.divider {
    color: var(--neutral-600);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 0;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 0;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem 2rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-section {
        text-align: center;
        padding: 0;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0.75rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
