:root {
    --primary-color: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #654321;
    --secondary-color: #2F4F4F;
    --secondary-light: #708090;
    --accent-color: #DAA520;
    --accent-light: #F0E68C;
    --text-dark: #2C2C2C;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-dark: #212529;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-color) !important;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../RES_images/hero-bg.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Cards and Components */
.service-card, .price-card, .review-card, .blog-card, .case-study-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.service-card:hover, .price-card:hover, .review-card:hover, .blog-card:hover, .case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-card .card-body {
  overflow-x: hidden;
    padding: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

/* Feature Cards */
.feature-card, .feature-item, .info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover, .feature-item:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i, .feature-item i, .info-card i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover i, .feature-item:hover i, .info-card:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Price Plans */
.price-card {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.price-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.price-card.featured .price-amount {
    color: var(--accent-light);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-card.featured ul li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* Reviews Slider */
.review-card {
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    background: var(--bg-light);
}

.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Process Steps */
.process-step {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    background: var(--white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 500px;
}

.timeline-item:nth-child(odd) {
    margin-left: auto;
    margin-right: 2rem;
}

.timeline-item:nth-child(even) {
    margin-right: auto;
    margin-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 2rem;
}

.timeline-item:nth-child(odd)::before {
    left: -3rem;
}

.timeline-item:nth-child(even)::before {
    right: -3rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control {
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--bg-light);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
  overflow-x: hidden;
    background: var(--white);
    padding: 1.5rem;
}

/* Gallery */
.gallery img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background: var(--bg-dark) !important;
    color: var(--white);
    margin-top: 5rem;
}

footer h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

footer a {
    color: #CED4DA !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-color) !important;
}

footer hr {
    border-color: var(--secondary-color);
    margin: 2rem 0;
}

/* Career Cards */
.career-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
}

/* Blog Cards */
.blog-card {
    padding: 1.5rem;
}

.blog-card img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

/* Utility Classes */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.text-primary-custom {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Additional Components */
.material-item, .equipment-item, .technique-item, .schedule-item, .tip-item, .warranty-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.material-item:hover, .equipment-item:hover, .technique-item:hover, .schedule-item:hover, .tip-item:hover, .warranty-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.care-item, .shoe-type, .product-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.care-item:hover, .shoe-type:hover, .product-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.care-item i {
    color: var(--primary-color);
}

/* Space for additional_page1.html and additional_page2.html specific styles */
.service-item, .warranty-item {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover, .warranty-item:hover {
    border-left-color: var(--primary-color);
}

.warranty-item i {
    color: var(--accent-color);
}

.tip-item i {
    color: var(--secondary-color);
} 