/* Font Imports - Fixed Structure */
@font-face {
    font-family: "FHOscar";
    src: url("../fonts/FHOscarCondensedTest-Bold-BF65139d0c7ac65.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "FHOscar";
    src: url("../fonts/FHOscarCondensedTest-Light-BF65139d0c8d1d6.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "FHOscar";
    src: url("../fonts/FHOscarCondensedTest-Medium-BF65139d0c9ecad.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "FHOscar";
    src: url("../fonts/FHOscarCondensedTest-SemiBold-BF65139d0c852c5.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'FHOscar', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

:root {
    /* Updated color palette based on brand guidelines */
    --navy-blue: #0e2f48;    /* Primary color - Navy Blue */
    --red: #c63c34;          /* Primary color - Red */
    --beige: #e5dfb9;        /* Secondary color - Beige */
    --yellow: #f0be5f;       /* Secondary color - Yellow */
    --orange: #e6853a;       /* Secondary color - Orange */
    --light: #f8f8f8;
    --dark: #1a1a1a;
    --gray: #333333;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--navy-blue);
    color: var(--light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 1.5rem;
    position: relative;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem;
    transition: color 0.3s;
    font-family: 'P4Speed', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--beige);
}

#nav-menu li a {
    font-size: 1.1rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-top: 3px solid var(--beige);
}

.dropdown-content a {
    color: var(--light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Lorimer No2', 'Segoe UI', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 300;
}

.dropdown-content a:hover {
    background-color: var(--gray);
    color: var(--beige);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 42, 72, 0.7), rgba(15, 42, 72, 0.7)), url('../images/hero-car.png') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--beige);
    font-family: 'P4Speed', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: var(--red);
    color: var(--light);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'P4Speed', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
}

.btn-outline:hover {
    background-color: var(--navy-blue);
    color: var(--light);
}

/* About Us Section */
.about {
    padding: 5rem 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-family: 'P4Speed', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--red);
}

.section-title p {
    font-weight: 300;
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
}

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

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid var(--navy-blue);
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--navy-blue);
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* Quote Section */
.quote {
    background-color: var(--navy-blue);
    color: var(--light);
    padding: 3rem 0;
    text-align: center;
}

.quote h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--beige);
    font-family: 'P4Speed', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.phone {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--beige);
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    font-family: 'P4Speed', 'Segoe UI', sans-serif;
}

/* Recent Jobs Section */
.recent-jobs {
    padding: 5rem 0;
    background-color: var(--light);
}

/* Gallery Layouts */
.gallery-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Service Areas Section */
.service-areas {
    padding: 3rem 0;
    background-color: #f0f0f0;
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.area-tag {
    background-color: var(--navy-blue);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content .logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--light);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--beige);
}

.footer-bottom {
    margin-top: 1rem;
}

.social-icons {
    margin: 1rem 0;
}

.social-icons a {
    color: var(--light);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--beige);
}

footer h2 {
    font-weight: 700;
    font-size: 1.8rem;
}

footer p {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--light);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Image Handling */
.service-image, .gallery-item img, .logo img {
    max-width: 100%;
    height: auto;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
}

/* Lazy loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Placeholder Styles */
.placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark) 100%);
    height: 100%;
}

.placeholder.alt {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #ccc;
    border-radius: 10px;
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
    height: 200px;
}

/* Page Specific Styles */

/* About Page */
.about-page {
    padding: 60px 20px;
}

.slogan-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1d5a82, #2c3e50);
    color: white;
    border-radius: 15px;
}

.slogan-section h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.passion-statement {
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #e6853a;
}

.about-content {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.about-text h3 {
    font-weight: 600;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: #c63c34;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.personal-touch {
    background: linear-gradient(135deg, #e6853a, #c63c34);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.personal-touch h3 {
    color: white;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.personal-touch p {
    color: white;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.7;
}

.journey-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 15px;
}

.journey-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.journey-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.journey-item i {
    font-size: 2.5rem;
    color: #e6853a;
    margin-bottom: 20px;
}

.journey-item h4 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1d5a82;
}

.journey-item p {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

.future-vision {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1d5a82, #2c3e50);
    color: white;
    border-radius: 15px;
    margin: 60px 0;
}

.future-vision h3 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.future-vision p {
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.values-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.value-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
}

.value-item i {
    font-size: 2.5rem;
    color: #e6853a;
    margin-bottom: 20px;
}

.value-item h4 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1d5a82;
}

.value-item p {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

/* Contact Page */
.contact-page {
    padding: 60px 20px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.contact-option {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #c63c34;
}

.contact-option h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-option p {
    margin-bottom: 20px;
    color: #666;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    padding: 14px 30px;
    background-color: #e6853a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #1d5a82;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 600px;
    font-size: 1.1rem;
}

.contact-note p {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-note ul {
    text-align: left;
    display: inline-block;
    font-size: 1.1rem;
}

.contact-note ul li {
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-area {
    padding: 60px 20px;
    text-align: center;
}

.service-area h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-area p {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.area {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.note {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Services Page */
.services-page {
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 40px 0;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.service-text h3 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #c63c34;
}

.service-text p {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.service-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-text ul li {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #555;
}

.cta {
    background-color: #0e2f48;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.cta h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-weight: 300;
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Homepage Specific Styles */
.passion-banner {
    background: linear-gradient(135deg, #1d5a82, #2c3e50);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin: 40px 0;
}

.passion-banner h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.passion-banner p {
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
}

.stat-number {
    font-weight: 700;
    font-size: 3rem;
    color: #e6853a;
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 600;
    font-size: 1.3rem;
    color: #1d5a82;
}

.why-choose {
    padding: 60px 20px;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #e6853a;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1d5a82;
}

.benefit-item p {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

.testimonial-section {
    background: linear-gradient(135deg, #e6853a, #c63c34);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.testimonial p {
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 2rem;
    color: #e6853a;
    margin-bottom: 20px;
}

.service-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1d5a82;
}

.service-card p {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}