@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #1a3a5c;
    text-decoration: none;
}

a:hover {
    color: #c9a227;
}

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

.section {
    padding: 60px 0;
}

.section-grey {
    background-color: #f0f0f0;
}

.section-navy {
    background-color: #1a3a5c;
    color: #ffffff;
}

.section-navy h2,
.section-navy h3 {
    color: #ffffff;
}

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

.text-white {
    color: #ffffff;
}

header {
    background-color: #1a3a5c;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo span {
    color: #c9a227;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #c9a227;
    color: #1a3a5c;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 58, 92, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-small {
    height: 300px;
}

.hero-small .hero-content h1 {
    font-size: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c9a227;
    color: #1a3a5c;
}

.btn-primary:hover {
    background-color: #b8931f;
    color: #1a3a5c;
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a3a5c;
    border: 2px solid #1a3a5c;
}

.btn-secondary:hover {
    background-color: #1a3a5c;
    color: #ffffff;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #1a3a5c;
}

.card {
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding: 30px;
    margin-bottom: 30px;
}

.card h3 {
    margin-bottom: 1rem;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    color: #1a3a5c;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: #c9a227;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #1a3a5c;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #666666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item-caption {
    background-color: #1a3a5c;
    color: #ffffff;
    padding: 15px 20px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a3a5c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    border: 2px solid #dddddd;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background-color: #ffffff;
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a3a5c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #c9a227;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 25px 20px;
    max-height: 500px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: #1a3a5c;
}

.blog-card h3 a:hover {
    color: #c9a227;
}

.blog-date {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: #555555;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 20px;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-feature {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.pricing-feature-icon {
    font-size: 3rem;
    color: #c9a227;
    margin-bottom: 20px;
}

.pricing-feature h3 {
    margin-bottom: 15px;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.areas-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.areas-text p {
    margin-bottom: 1rem;
}

.areas-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

footer {
    background-color: #1a3a5c;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #c9a227;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #c9a227;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

hr {
    border: none;
    border-top: 2px solid #dddddd;
    margin: 40px 0;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #c9a227;
    margin: 20px auto 30px;
}

.cta-section {
    background-color: #c9a227;
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    color: #1a3a5c;
    margin-bottom: 15px;
}

.cta-section p {
    color: #1a3a5c;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-section .btn {
    background-color: #1a3a5c;
    color: #ffffff;
}

.cta-section .btn:hover {
    background-color: #0f2640;
}

.intro-section {
    padding: 60px 0;
    text-align: center;
}

.intro-section h2 {
    margin-bottom: 10px;
}

.intro-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555555;
}

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

.two-column img {
    width: 100%;
    height: auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.two-column-reverse {
    direction: rtl;
}

.two-column-reverse > * {
    direction: ltr;
}

@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid,
    .pricing-features,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a3a5c;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-container {
        position: relative;
    }

    .hero {
        height: 400px;
    }

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

    .hero-small {
        height: 250px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .pricing-features,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .two-column,
    .areas-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-column-reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section {
        padding: 40px 0;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
