/* jimthehomepro.com - Sleek, High-End Corporate Design */

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

/* Text Logo - Sleek and Modern */
.logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.6em;
    font-weight: 300;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 4px;
    padding: 8px 0;
    display: inline-block;
}

.logo strong {
    font-weight: 700;
    color: #d4af37;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 2.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

nav {
    margin-top: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

main {
    padding: 4rem 0;
}

h1, h2, h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

h1 {
    font-size: 3em;
    border-left: 5px solid #d4af37;
    padding-left: 20px;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.2em;
    margin-top: 3rem;
}

h3 {
    font-size: 1.6em;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.hero-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 4rem 0;
    margin: -4rem 0 3rem 0;
    text-align: center;
}

.hero-section h1 {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.3em;
    color: #6a6a6a;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background: #ffffff;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 3px solid #d4af37;
}

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

.service-box {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 2px;
    transition: all 0.3s;
    border-left: 3px solid #d4af37;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #ffffff;
}

.service-box h3 {
    margin-top: 0;
    color: #d4af37;
}

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

.gallery-item {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1em;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.gallery-item:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
}

footer {
    background: #1a1a1a;
    color: #cccccc;
    text-align: center;
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 3px solid #d4af37;
}

footer p {
    color: #cccccc;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto;
}

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

label {
    display: block;
    margin-bottom: 0.7rem;
    color: #2c2c2c;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1em;
    transition: all 0.3s;
    background: #f8f8f8;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #ffffff;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 15px 50px;
    border: none;
    border-radius: 2px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.highlight-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 2px;
    border-left: 5px solid #d4af37;
}

.highlight-box h3 {
    color: #d4af37;
    margin-top: 0;
}

.highlight-box p {
    color: #e0e0e0;
}
