/* Variables */
:root {
    --primary-color: #9A8A78;
    --secondary-color: #E5E0DC;
    --dark-color: #2C2C2C;
    --light-color: #F9F7F4;
    --accent-color: #4A6741;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    padding-top: 76px;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Lato', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 44, 44, 0.3), rgba(44, 44, 44, 0.3)), url('../bg-cbs.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Process Section */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 50%, transparent 50%);
    background-size: 20px 2px;
    z-index: 1;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.process-card h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
}

.process-card p {
    color: var(--dark-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid var(--secondary-color);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body h6 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-footer {
    border-top: 1px solid var(--secondary-color);
    padding: 1rem 1.5rem;
}

.btn-link {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991px) {
    .process-steps::before {
        display: none;
    }
}

/* Contact Form */
#contact {
    background-color: var(--light-color);
}

.form-control, .form-select {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #E5E0DC;
    background-color: white;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(154, 138, 120, 0.25);
}

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

.form-check-label {
    color: var(--dark-color);
    padding-left: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#contact-form {
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 991px) {
    .nav-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}
