/* Import elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3e50;
    background-color: #f9fbfd;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #0a1c2c;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #edf2f7;
}
::-webkit-scrollbar-thumb {
    background: #9aa9b9;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c14f2b;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

/* Animated background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(193,79,43,0.02) 0%, transparent 50%);
    animation: rotate 90s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.85;
}

.logo-grca {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1a3852, #1e4a7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.logo-grca span {
    background: linear-gradient(135deg, #c14f2b, #d45d2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-full {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #7f8fa4;
    margin-top: 0.1rem;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #3e5268;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    padding: 0.4rem 0.8rem;
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
    white-space: nowrap;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.nav a:last-child {
    border-right: none;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #c14f2b, #1e4a7a);
    transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: #c14f2b;
}

.nav a.active {
    color: #c14f2b;
    font-weight: 600;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.auth-btn {
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.login-btn {
    background: transparent;
    border-color: #c14f2b;
    color: #c14f2b;
}

.login-btn:hover {
    background: #c14f2b;
    color: white;
}

.signup-btn {
    background: #1e4a7a;
    color: white;
}

.signup-btn:hover {
    background: #0f3557;
}

.user-greeting {
    color: #1e4a7a;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.logout-btn {
    background: transparent;
    border-color: #c14f2b;
    color: #c14f2b;
    padding: 0.2rem 1rem;
    font-size: 0.8rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 600px;
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 2.5rem 0;
    box-shadow: 0 20px 30px -15px rgba(0,20,40,0.3);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #f0f5ff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #c14f2b;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(193,79,43,0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: #c14f2b;
    color: white;
    box-shadow: 0 4px 10px rgba(193,79,43,0.2);
}

.btn-primary:hover {
    background: #a84321;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(193,79,43,0.25);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-dark {
    background: transparent;
    border-color: #c14f2b;
    color: #c14f2b;
}

.btn-outline-dark:hover {
    background: #c14f2b;
    color: white;
}

/* Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 3rem 0 0.5rem;
    position: relative;
    display: inline-block;
    color: #0a1c2c;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c14f2b, #1e4a7a);
    border-radius: 1.5px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #60758b;
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Equipment Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.category-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem 1.8rem;
    transition: all 0.25s ease;
    border: 1px solid #eef3f8;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #c14f2b;
    box-shadow: 0 15px 30px -15px rgba(193,79,43,0.15);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.category-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1e3a5a;
}

.category-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #62748c;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.category-link {
    font-family: 'Inter', sans-serif;
    color: #c14f2b;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}

.category-link:hover {
    gap: 0.6rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.8rem 1.2rem;
    text-align: center;
    border: 1px solid #eef3f8;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: #c14f2b;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e4a7a, #0f2f4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #c14f2b;
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

.stat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #7c8ea4;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem;
    border: 1px solid #eef3f8;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #c14f2b;
    box-shadow: 0 15px 30px -15px rgba(193,79,43,0.1);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1e3a5a;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #62748c;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f5fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f657f;
}

.service-features li::before {
    content: "✓";
    color: #c14f2b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.content-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem;
    border: 1px solid #eef3f8;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.05);
}

.content-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #c14f2b;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f5fa;
    padding-bottom: 0.5rem;
}

.content-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #1e4a7a;
    margin: 1.5rem 0 0.5rem;
}

.content-card p {
    color: #4f657f;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-card ul {
    list-style: none;
    margin: 1rem 0;
}

.content-card ul li {
    padding: 0.4rem 0;
    border-bottom: 1px dashed #f0f5fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f657f;
    font-size: 0.95rem;
}

.content-card ul li::before {
    content: "→";
    color: #c14f2b;
    font-weight: 600;
}

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

.finance-category {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid #c14f2b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.finance-category h4 {
    color: #1e4a7a;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.finance-category ul {
    list-style: none;
}

.finance-category ul li {
    padding: 0.3rem 0;
    color: #4f657f;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.finance-category ul li::before {
    content: "•";
    color: #c14f2b;
    font-weight: bold;
    font-size: 1.2rem;
}

.finance-highlight {
    background: linear-gradient(145deg, #f8fbfe, #edf5fc);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    border: 1px solid #e0e9f2;
}

.finance-highlight p {
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #7f8fa4;
    padding: 1.5rem;
    background: #f5f9ff;
    border-radius: 1rem;
    margin-top: 2rem;
}

/* Parts Request Form */
.parts-section {
    background: linear-gradient(145deg, #0e2439, #1a3349);
    border-radius: 1.5rem;
    padding: 3rem;
    margin: 3rem 0;
    color: white;
}

.parts-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: white;
}

.parts-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #c0d2e8;
    max-width: 600px;
}

.parts-form {
    max-width: 800px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #b8cfec;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.8rem;
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c14f2b;
    background: rgba(255,255,255,0.08);
}

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

.btn-submit {
    grid-column: span 2;
    background: #c14f2b;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: #a84321;
}

/* Auth Pages */
.auth-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
    border: 1px solid #eef3f8;
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0a1c2c;
}

.auth-form .form-group {
    margin-bottom: 1.2rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: #3e5268;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2eaf2;
    border-radius: 0.8rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: #c14f2b;
    box-shadow: 0 0 0 3px rgba(193,79,43,0.1);
}

.auth-form button {
    width: 100%;
    padding: 1rem;
    background: #c14f2b;
    color: white;
    border: none;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1rem;
}

.auth-form button:hover {
    background: #a84321;
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: #7f8fa4;
}

.auth-switch a {
    color: #c14f2b;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* Dashboard */
.dashboard-container {
    max-width: 1200px;
    margin: 3rem auto;
}

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

.dashboard-welcome {
    font-size: 1.8rem;
    color: #0a1c2c;
}

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

.dashboard-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid #eef3f8;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.05);
}

.dashboard-card h3 {
    color: #1e4a7a;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f5fa;
    padding-bottom: 0.5rem;
}

.dashboard-card ul {
    list-style: none;
}

.dashboard-card li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #f0f5fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card li:last-child {
    border-bottom: none;
}

.wishlist-item, .recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.remove-btn {
    color: #c14f2b;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.service-request-form {
    margin-top: 1rem;
}

.service-request-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2eaf2;
    border-radius: 0.8rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.service-request-form button {
    background: #1e4a7a;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 0.8rem;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.service-request-form button:hover {
    background: #0f3557;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
}

.about-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 15px 30px -15px rgba(0,0,0,0.05);
    border: 1px solid #eef3f8;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4f657f;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.about-stat-item {
    text-align: center;
    padding: 1.2rem;
    background: #f8fbfe;
    border-radius: 1rem;
}

.about-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #c14f2b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.team-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.8rem 1.2rem;
    text-align: center;
    border: 1px solid #eef3f8;
    transition: transform 0.2s;
}

.team-card:hover {
    transform: translateY(-3px);
    border-color: #c14f2b;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid #f0f5fa;
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.team-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #7f8fa4;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-info {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid #eef3f8;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f5fa;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f5f9ff;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #c14f2b;
}

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #1e3a5a;
}

.contact-details p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6d7f97;
    line-height: 1.5;
}

.contact-form {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid #eef3f8;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form .form-group label {
    color: #3e5268;
    font-size: 0.85rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: #f8fbfe;
    border: 1px solid #e2eaf2;
    color: #1e2f3f;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #c14f2b;
    background: #ffffff;
}

.map-container {
    margin-top: 2rem;
    border-radius: 1.2rem;
    overflow: hidden;
    height: 400px;
    border: 1px solid #eef3f8;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Inventory Grid */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0 3rem;
}

.inventory-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid #eef3f8;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.05);
}

.inventory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -15px rgba(193,79,43,0.2);
    border-color: #c14f2b;
}

.card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #c14f2b;
    color: white;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    z-index: 2;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1c2c;
    margin-bottom: 0.2rem;
}

.card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #c14f2b;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    margin: 0.8rem 0;
    font-size: 0.85rem;
    color: #5d7187;
}

.card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e4a7a;
    margin: 0.8rem 0 0.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #eef3f8;
}

.btn-details {
    background: transparent;
    border: 1px solid #c14f2b;
    color: #c14f2b;
    font-weight: 500;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.btn-details:hover {
    background: #c14f2b;
    color: white;
}

.btn-enquire {
    background: #1e4a7a;
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.btn-enquire:hover {
    background: #0f3557;
}

.btn-wishlist {
    background: transparent;
    border: 1px solid #c14f2b;
    color: #c14f2b;
    font-weight: 500;
    padding: 0.4rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    background: #c14f2b;
    color: white;
}

.btn-wishlist.active {
    background: #c14f2b;
    color: white;
}

/* Auction Cards Slider */
.auction-slider-container {
    position: relative;
    margin: 2.5rem 0;
    overflow: hidden;
}

.auction-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.auction-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid #eef3f8;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.auction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -15px rgba(193,79,43,0.2);
    border-color: #c14f2b;
}

.auction-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.auction-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c14f2b;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.auction-content {
    padding: 1.5rem;
}

.auction-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.auction-details {
    margin: 1rem 0;
    color: #4f657f;
    font-size: 0.9rem;
}

.auction-bid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef3f8;
}

.starting-bid {
    color: #1e4a7a;
    font-weight: 600;
}

.bid-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #c14f2b;
}

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

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2eaf2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: #c14f2b;
    color: white;
    border-color: #c14f2b;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #eef3f8;
    box-shadow: 0 4px 12px -8px rgba(0,0,0,0.05);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #e2eaf2;
    border-radius: 2rem;
    background-color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #2d3e50;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235d7187' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 0.8rem;
}

.filter-select:hover {
    border-color: #c14f2b;
}

.search-box {
    display: flex;
    border: 1px solid #e2eaf2;
    border-radius: 2rem;
    overflow: hidden;
}

.search-box input {
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    width: 200px;
}

.search-box button {
    background: #c14f2b;
    border: none;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.search-box button:hover {
    background: #a84321;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 3rem;
}

.page-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2eaf2;
    border-radius: 8px;
    cursor: pointer;
    background: white;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4f657f;
    transition: all 0.2s;
}

.page-item.active {
    background: #1e4a7a;
    color: white;
    border-color: #1e4a7a;
}

.page-item:hover:not(.active) {
    background: #f8fbfe;
    border-color: #c14f2b;
}

/* Footer */
.footer {
    background: #0a1c2c;
    color: white;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: #c14f2b;
    letter-spacing: 0.5px;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-family: 'Inter', sans-serif;
    color: #b0c9e0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    line-height: 1.4;
}

.footer-col a:hover {
    color: #c14f2b;
}

.footer-col p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #9bb1c9;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #8a9fb8;
}

.sa-badge {
    background: rgba(255,255,255,0.05);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
}