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

/* main */
html, body {
    font-family: 'Segoe UI', 'Tahoma', 'Verdana', sans-serif;
    line-height: 1.7em;
}

a {
    color: #333;
    text-decoration: none;
}

h1 {
    padding-bottom: 20px;
}

/* orange accent text */
.text-orange {
    color: #e8a020;
}

/* navbar */
#navbar {
    background: #333;
    color: #fff;
    overflow: auto;
}

#navbar div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

#navbar h1 a {
    color: #fff;
}

#navbar ul {
    list-style: none;
    display: flex;
}

#navbar ul li a {
    color: #ccc;
    padding: 10px 20px;
    display: block;
}

#navbar ul li a.active,
#navbar ul li a:hover {
    background: #e8a020;
    color: #fff;
    border-radius: 5px;
}

/* showcase */
#showcase {
    background: url('../img/showcase.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    min-height: 300px;
}

#showcase h1 {
    font-size: 40px;
    font-weight: 300;
    padding-bottom: 10px;
}

#showcase p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px;
}

/* button */
.btn {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    border: 2px solid #ccc;
    color: #ccc;
    border-radius: 30px;
}

.btn:hover {
    background: #e8a020;
    border-color: #e8a020;
    color: #fff;
}

/* home info */
#home-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#info-img {
    background: url('../img/photo-1.jpg') no-repeat center center/cover;
    min-height: 300px;
}

#info-content {
    background: #f9f9f9;
    padding: 40px;
}

#info-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

#info-content p {
    color: #444;
    margin-bottom: 20px;
}

/* home boxes */
#home-boxes {
    background: #333;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.box {
    padding: 40px;
    text-align: center;
    color: #aaa;
}

.box .icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.box h3 {
    color: #aaa;
    font-weight: 400;
    margin-bottom: 10px;
}

.box p {
    font-size: 14px;
}

.box.highlight {
    background: #e8a020;
    color: #fff;
}

.box.highlight h3 {
    color: #fff;
}

/* footer */
footer {
    background: #444;
    color: #aaa;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* ==================
   ABOUT PAGE
   ================== */

#about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 40px;
    gap: 40px;
    background: #fff;
}

#about-content h1 {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
    color: #222;
}

#about-content p {
    color: #444;
    margin-bottom: 15px;
    font-size: 15px;
}

#about-img img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

/* Testimonials section */
#testimonials {
    background: url('/img/test-bg.jpg') no-repeat center center/cover;
    min-height: 400px;
    position: relative;
    padding: 40px;
}

#testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

#testimonials-content {
    position: relative;
    z-index: 1;
}

#testimonials-content h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

/* Testimonial cards */
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(232, 160, 32, 0.75);
    border-left: 4px solid #e8a020;
    padding: 18px 20px;
    margin-bottom: 15px;
    max-width: 700px;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #fff;
}

.testimonial-card p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================
   CONTACT PAGE
   ================== */

#contact-form {
    padding: 40px;
    max-width: 600px;
}

#contact-form h1 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    padding-bottom: 5px;
}

#contact-form > p {
    color: #555;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.form-group .required {
    color: #e8a020;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #e8a020;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: inherit;
    height: 180px;
    resize: vertical;
    outline: none;
}

.btn-dark {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: #fff;
    border: none;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    margin-top: 5px;
}

.btn-dark:hover {
    background: #e8a020;
}

#contact-info {
    background: #333;
    color: #ccc;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 40px 20px;
    text-align: center;
}

#contact-info .contact-item h3 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 16px;
}

#contact-info .contact-item p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
}