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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.7;
    color: #222;
    background: #f7f8fa;
}

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

/* Main content wrapper */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1.5px solid #e6e6e6;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

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

/* Header logo alignment */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-name-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-text h2 {
    font-family: 'Playfair Display', serif;
    color: #1a2341;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 0;
}

.nav-logo-text span {
    color: #bfa14a;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Open Sans', Arial, sans-serif;
    display: block;
    padding-bottom: 0.7rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1a2341;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a:hover {
    color: #bfa14a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1a2341;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: #f7f8fa;
    color: #1a2341;
    padding: 120px 0 0px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.hero-box {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    border-radius: 32px;
    border: 2px solid #e0e4ec;
    background: #fff;
    margin: 0 auto 2.5rem auto;
    padding: 0;
    box-shadow: none;
    gap: 0;
    min-height: 400px; /* Ensures the box is tall enough for the image to fill vertically */
    height: 60vh;
}
.hero-content {
    flex: 1 1 53%;
    max-width: 53%;
    padding: 0 2.5rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.hero-content,
.hero-image.hero-image-full {
    height: 100%;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a2341;
    line-height: 1.15;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    color: #444;
}

.cta-button {
    display: block;
    width: 50%;
    text-align: center;
    margin-top: 0.7rem;
    background: #bfa14a;
    color: #fff;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(191,161,74,0.12);
}

.cta-button:hover {
    background: #a88d36;
    box-shadow: 0 6px 24px rgba(191,161,74,0.18);
}

.hero-image {
    display: flex;
    justify-content: center;
    padding-right: 2.5rem;
}
.hero-image.hero-image-full {
    flex: 1 1;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    min-width: 0;
}
.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(26,35,65,0.08);
    object-fit: cover;
    background: #fff;
    border: 1.5px solid #e0e4ec;
}
.hero-img-placeholder.hero-img-full {
    height: 100%;
    width: 100%;
    border-radius: 0 30px 30px 0;
    object-fit: cover;
    object-position: right center;
    display: block;
}

/* About/Mission Section */
.about {
    padding: 60px 0 40px;
    background: transparent;
}

.about-flex {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 320px;
}

.about-img-placeholder {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,35,65,0.07);
    object-fit: cover;
    background: #fff;
    border: 1.5px solid #e0e4ec;
}

.about-text {
    flex: 2;
    min-width: 320px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a2341;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 1.08rem;
    color: #1a2341;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
}

.about-list i {
    color: #bfa14a;
    font-size: 1.2rem;
}

/* Insights/Services Section */
.insights {
    padding: 60px 0 40px;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #1a2341;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
}

.insight-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(26,35,65,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #ececec;
}

.insight-card:hover {
    box-shadow: 0 8px 32px rgba(191,161,74,0.13);
    transform: translateY(-6px) scale(1.03);
}

.insight-card img {
    max-width: 40%;
    width: 40%;
    display: block;
    margin: 0 auto 1rem auto;
    height: auto;
}

.insight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1a2341;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.insight-card p {
    color: #444;
    font-size: 1rem;
}

.insight-card > .coming-soon {
    display: block;
    text-align: center;
    margin: 0 0 0.1em 0;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a2341;
    opacity: 0.6;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Contact Section */
.contact {
    padding: 60px 0 40px;
    background: transparent;
}

.contact-content {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a2341;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #bfa14a;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 700;
    color: #1a2341;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.contact-item p {
    color: #444;
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: #f7f8fa;
    padding: 2.2rem;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(26,35,65,0.07);
    min-width: 320px;
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a2341;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: inherit;
    background: #fff;
}

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

.submit-btn {
    width: 100%;
    background: #bfa14a;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #a88d36;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: #1a2341;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #e6e6e6;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #bfa14a;
}

.footer-bottom {
    border-top: 1px solid #2c345a;
    padding-top: 1rem;
    text-align: center;
    color: #e6e6e6;
    font-size: 0.98rem;
}

/* Testimonials Carousel */
.testimonials {
    background: #fff;
    border-radius: 32px;
    border: 2px solid #e0e4ec;
    box-shadow: none;
    padding: 60px 0 40px;
    margin: 0 auto 2.5rem auto;
}
.testimonials .container {
    padding: 0;
}
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.carousel-arrow {
    background: none;
    border: none;
    color: #1a2341;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0 1rem;
    transition: color 0.2s;
    opacity: 0.7;
}
.carousel-arrow:hover {
    color: #bfa14a;
    opacity: 1;
}
.carousel-content {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.testimonial {
    display: none;
    max-width: 700px;
    font-size: 1.3rem;
    color: #222;
    font-family: 'Playfair Display', serif;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto;
    background: none;
    border: none;
    padding: 0 1rem;
}
.testimonial.active {
    display: block;
}
.testimonial footer {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1.2rem;
    font-family: 'Open Sans', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
}

/* Social Icons */
.contact-item .fab,
.footer-social .fab {
    font-size: 2.2rem;
    margin-right: 1.1rem;
    color: #1a2341;
    transition: color 0.2s;
}
.contact-item .fab:last-child,
.footer-social .fab:last-child {
    margin-right: 0;
}
.contact-item .fab:hover,
.footer-social .fab:hover {
    color: #bfa14a;
}
.footer-social {
    margin-top: 0.7rem;
}

/* Contact Details Address */
.contact-item a {
    color: #1a2341;
    text-decoration: underline;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: #bfa14a;
}

.footer-section a {
    color: #e6e6e6;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-section a:hover {
    color: #bfa14a;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.0rem;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .about-flex, .contact-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 40px;
    }
    .hero-box {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .hero-content, .hero-image {
        padding-left: 0;
        padding-right: 0;
    }
    .carousel-content {
        padding: 0 0.5rem;
    }
    .testimonial {
        font-size: 1.05rem;
    }
    .about, .insights, .testimonials, .contact {
        padding: 40px 0 24px;
    }
    .testimonials {
        border-radius: 18px;
        padding: 40px 0 24px;
    }
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 0.1rem;
    }
    .nav-logo {
        justify-content: center;
        width: 100%;
        padding-top: 0.1rem;
        margin-bottom: 0.2rem;
    }
    .nav-logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-logo-text h2 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.05rem;
        line-height: 1.1;
    }
    .nav-logo-text span {
        font-size: 0.9rem;
        text-align: center;
        padding-bottom: 0.05rem;
        margin-bottom: 0.05rem;
        line-height: 1.1;
    }
    .nav-menu {
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
        margin-top: 0.1rem;
    }
    .nav-menu a {
        font-size: 0.95rem;
    }
    .nav-logo {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
    .nav-logo-img {
        height: 36px;
        margin-bottom: 0.1rem;
    }
    .nav-logo-text {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .about-img-placeholder, .hero-img-placeholder {
        max-width: 90vw;
    }
    .insight-card img {
        max-width: 100%;
    }
    .container {
        padding: 0 8px;
    }
    .carousel {
        gap: 0.5rem;
    }
    .carousel-arrow {
        font-size: 2rem;
        padding: 0 0.3rem;
    }
    .testimonial {
        font-size: 0.98rem;
        padding: 0;
    }
    .hero-box {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem 0.5rem;
        border-radius: 18px;
        gap: 1.2rem;
        min-height: unset;
        height: auto;
    }
    .hero-content {
        max-width: 100%;
        padding: 0 0.5rem 0 0.5rem;
        text-align: center;
    }
    .hero-image.hero-image-full {
        max-width: 100%;
        height: auto;
        padding: 0;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-img-placeholder.hero-img-full {
        width: 100%;
        height: auto;
        border-radius: 0 0 18px 18px;
        object-fit: cover;
        object-position: center;
        display: block;
        margin: 0 auto;
    }
    .cta-button {
        width: 100%;
        margin: 1rem 0 0 0;
    }
    .about, .insights, .testimonials, .contact {
        padding: 24px 0 12px;
    }
    .testimonials {
        border-radius: 12px;
        padding: 24px 0 12px;
    }
    .nav-menu {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.success-message {
    background: #27ae60;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.why-work {
    background: transparent;
    padding: 60px 0 40px;
}
.why-work-flex {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
}
.why-photo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}
.why-img-placeholder {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(26,35,65,0.10);
    background: #fff;
    border: 1.5px solid #ececec;
}
.why-values {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2341;
    margin-bottom: 2.2rem;
    font-weight: 700;
}
.why-cards {
    display: flex;
    gap: 0;
    background: #f7f8fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,35,65,0.04);
    border: 2px solid #e0e4ec;
}
.why-card {
    flex: 1;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    background: #f7f8fa;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 2px solid #e0e4ec;
}
.why-card:last-child {
    border-right: none;
}
.why-card h3 {
    font-size: 2rem;
    margin-bottom: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.why-integrity h3 {
    color: #e05a47;
}
.why-dedication h3 {
    color: #a13a3a;
}
.why-knowledge h3 {
    color: #1a4ed8;
}
.why-card p {
    color: #222;
    font-size: 1.1rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .why-work-flex {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .why-cards {
        flex-direction: column;
        border-radius: 12px;
    }
    .why-card {
        border-right: none;
        border-bottom: 2px solid #e0e4ec;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .why-card:last-child {
        border-bottom: none;
    }
}
@media (max-width: 600px) {
    .why-img-placeholder {
        max-width: 90vw;
    }
    .why-title {
        font-size: 1.3rem;
    }
} 

.coming-soon {
    font-size: 0.85em;
    color: #888;
    opacity: 0.7;
    font-weight: 500;
    margin-left: 0.3em;
} 