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

:root {
    --primary-color: #333333;  /* Dark gray for main text and elements */
    --secondary-color: #666666;  /* Medium gray for secondary elements */
    --accent-color: #999999;  /* Light gray for accents */
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 0;
    left: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(51, 51, 51, 0.9), rgba(102, 102, 102, 0.9)),
                url('../images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone-cta {
    font-size: 1.6rem;
    font-weight: bold;
}

.phone-number {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--accent-color);
}

/* Intro Section */
.intro {
    padding: 5rem 1rem;
    background: var(--white);
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

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

.intro-image:hover .security-image {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding: 0 1rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Service Area Section */
.service-area {
    padding: 5rem 1rem;
    background: var(--white);
}

.service-area-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: var(--light-gray);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 3px 30px rgba(0,0,0,0.08);
}

.service-area h2 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
}

.service-area p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.locations {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Qualifications Section */
.qualifications {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, var(--light-gray), #ffffff);
}

.qualifications-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.qualifications h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.qualifications h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.qualifications p {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.qualifications-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.qualification-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.qualification-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.qualification-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .qualifications {
        padding: 4rem 1rem;
    }

    .qualifications h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .qualifications p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .qualifications-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qualification-item {
        padding: 1.5rem;
    }

    .qualification-item h3 {
        font-size: 1.2rem;
    }

    .qualification-item p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, var(--light-gray), #ffffff);
}

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

.about h2 {
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 3.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    flex: 1;
    max-width: 400px;
}

/* Ensure the last row is aligned with others */
.feature-row:last-child {
    justify-content: flex-start;
    padding-left: calc(50% - 200px - 1rem);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature i {
    color: var(--white);
    font-size: 1.4rem;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature span {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--primary-color);
    text-align: left;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: var(--light-gray);
}

.contact h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact p {
    text-align: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 3/4;
}

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

.contact-image:hover .contact-photo {
    transform: scale(1.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-form select:invalid {
    color: #757575;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 80px auto 40px;
    padding: 0 1rem;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-links {
    list-style: none;
    padding: 0;
}

.legal-links li {
    margin-bottom: 0.5rem;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .phone-cta {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .service-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .legal-content {
        margin-top: 70px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.6rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .footer {
        padding: 3rem 1rem 1rem;
    }

    .logo-img {
        height: 30px;
    }

    .service-features {
        padding-left: 1rem;
    }

    .service-area-content {
        padding: 2rem;
    }

    .service-area h2 {
        font-size: 2rem;
    }

    .service-area p {
        font-size: 1.1rem;
    }

    .locations {
        font-size: 1.2rem;
    }

    .about {
        padding: 4rem 1rem;
    }

    .about h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .feature-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .feature {
        width: 100%;
        max-width: 100%;
    }

    .feature-row:last-child {
        padding-left: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-image {
        aspect-ratio: 16/9;
        margin: 0 -1rem;
        border-radius: 0;
        order: -1;
    }

    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .contact p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-container {
        gap: 1.5rem;
    }

    .intro {
        padding: 4rem 1rem;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .intro-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .intro-image {
        aspect-ratio: 16/9;
        margin: 0 -1rem;
        border-radius: 0;
    }
} 