/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Sans-serif;
    color: #000000;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    line-height: 1.2em;
    color: #001931;
}

h1 {
    font-size: 51px;
    font-weight: 600;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    line-height: 1.4em;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 875px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #ffffff;
    padding: 20px 0 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-family: "Montserrat", Sans-serif;
    color: #000000;
    font-size: 16px;
    padding: 4px 0;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #2B2B2B;
    text-decoration: underline;
}

.phone-button {
    background-color: #ED6306;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 2px;
    font-family: "Montserrat", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.phone-button:hover {
    background-color: #DA5902;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background-image: url('images/Background_CV.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 548px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.54;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
    max-width: 875px;
    padding: 60px 20px;
}

.hero-logo {
    width: 37%;
    margin: 0 auto 30px;
}

.hero h1 {
    font-family: "Montserrat", Sans-serif;
    font-size: 51px;
    font-weight: 600;
    line-height: 1.4em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero h2 {
    font-family: "Open Sans", Sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: "Montserrat", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #ED6306;
    color: #ffffff;
    box-shadow: -99px 0px 47px -82px #FF3737 inset;
}

.btn-primary:hover {
    background-color: #DA5902;
    text-decoration: none;
}

.btn-rounded {
    border-radius: 5px;
}

/* Sections */
.section {
    padding: 50px 0;
}

.section-dark {
    background-color: #001931;
    color: #FFFFFF;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #001931;
    opacity: 0.9;
}

.section-dark h2 {
    color: #FFFFFF;
}

.section-light {
    background-color: #FFFFFF;
}

.section-gray {
    background-color: #FBFBFB;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.two-column-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Cards */
.card {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.5);
    padding: 20px;
    margin: 10px;
    border-radius: 0;
}

.card h2 {
    font-family: "Open Sans", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4em;
    color: #3A3A3A;
    text-align: center;
    margin-bottom: 15px;
}

.card img {
    width: 45%;
    margin: 0 auto 15px;
    display: block;
}

/* Process Steps */
.process-section {
    background-color: #FFFFFF;
    padding: 50px 0;
}

.process-step {
    background-color: #FFFFFF;
    border: 1px dashed #0D0A0A;
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.5);
    padding: 20px;
    margin: 10px 0;
    max-width: 796px;
    margin-left: auto;
    margin-right: auto;
}

.process-step h3 {
    font-family: "Montserrat", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    color: #001931;
    text-align: center;
    margin-bottom: 10px;
}

.process-step-number {
    font-family: "Montserrat", Sans-serif;
    font-size: 81px;
    font-weight: 600;
    line-height: 1.4em;
    color: #001931;
    text-align: center;
    margin: -29px 0 0 0;
}

.process-step-content {
    text-align: center;
}

.process-step-content p {
    font-family: "Open Sans", Sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4em;
    color: #001931;
}

.process-yes-no h3 {
    font-family: "Montserrat", Sans-serif;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4em;
    color: #001931;
}

/* About Section */
.about-section {
    background-color: #FFFFFF;
    background-position: center center;
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.8;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-section h2 {
    color: #FFFFFF;
    text-align: center;
}

.about-card {
    background-color: #FFFFFF;
    padding: 20px;
    margin: 10px;
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.5);
}

.about-card img {
    width: 33%;
    border-radius: 90px;
    margin: 0 auto 15px;
    display: block;
}

.about-card h3 {
    font-family: "Open Sans", Sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2em;
    color: #050505;
    text-align: center;
    margin-bottom: 10px;
}

.about-card p {
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: #000000;
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    padding: 50px 0;
}

.testimonial-container {
    background-color: #FFFFFF;
    padding: 30px 0;
}

.testimonial {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    align-items: start;
    padding: 20px;
    margin-bottom: 20px;
}

.testimonial-reverse {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 30px;
    align-items: start;
    padding: 20px;
    margin-bottom: 20px;
}

.testimonial img {
    width: 150px;
    height: 150px;
}

.testimonial-content h3 {
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #001931;
    margin-bottom: 10px;
}

.testimonial-content .date {
    font-family: "Open Sans", Sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    line-height: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.testimonial-content .author {
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #001931;
    margin-bottom: 10px;
}

.testimonial-content .stars {
    font-size: 20px;
    color: #ED6306;
}

/* Contact Form */
.contact-section {
    padding: 60px 0 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 10px;
    padding: 0 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: "Montserrat", Sans-serif;
    color: #000000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 3px solid #D4D4D4;
    border-radius: 0;
    background-color: #FBFBFB;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    color: #000000;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ED6306;
}

.form-submit {
    width: 100%;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    margin: 15px 0;
    font-family: "Montserrat", Sans-serif;
    color: #000000;
}

/* Footer */
footer {
    background-color: #E9E9E9;
    padding: 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    font-family: "Montserrat", Sans-serif;
    font-size: 24px;
    color: #ED6306;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    font-family: "Montserrat", Sans-serif;
    color: #000000;
    font-size: 16px;
    padding: 4px 0;
}

.footer-column ul li a:hover {
    color: #2B2B2B;
}

.footer-icon-list {
    list-style: none;
}

.footer-icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-icon-list i {
    color: #ED6306;
    font-size: 18px;
    width: 18px;
}

.footer-icon-list span {
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    color: #000000;
}

.footer-bottom {
    background-color: #ED6306;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FFFFFF;
}

/* Icon List */
.icon-list {
    list-style: none;
    text-align: left;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.icon-list i {
    color: #ED6306;
    font-size: 26px;
    width: 26px;
}

.icon-list span {
    font-family: "Montserrat", Sans-serif;
    font-size: 19px;
    color: #000000;
}

/* City Grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.city-card {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.5);
    padding: 20px;
    text-align: center;
}

.city-card img {
    width: 87%;
    margin: 0 auto 15px;
    display: block;
}

.city-card p {
    font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3em;
    color: #001931;
}

.city-card a {
    color: #001931;
}

/* Gradient Section */
.gradient-section {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(242, 122, 41, 0.23) 100%);
    padding: 50px 0;
    position: relative;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.gradient-section h2 {
    color: #001931;
    text-align: center;
}

/* Spacer */
.spacer {
    height: 10px;
}

.spacer-large {
    height: 31px;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .two-column,
    .two-column-reverse {
        grid-template-columns: 1fr;
    }
    
    .testimonial,
    .testimonial-reverse {
        grid-template-columns: 1fr;
    }
    
    .testimonial img,
    .testimonial-reverse img {
        margin: 0 auto;
    }
    
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .hero {
        min-height: 458px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero h2 {
        font-size: 17px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .city-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-step-number {
        font-size: 85px;
        line-height: 1.1em;
    }
}
