/* -------------------------------------------
   RESET & VARIABLES
------------------------------------------- */
:root {
    --color-primary: #c23368;
    --color-primary-hover: #a12853;
    --color-dark: #23262b;
    --color-dark-lighter: #2c3036;
    --color-text-main: #555555;
    --color-text-light: #999999;
    --color-bg-gray: #f1f4f6;
    --color-bg-light: #f9f9f9;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-main);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------------------
   BUTTONS
------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: #ddd;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* -------------------------------------------
   TOP BAR
------------------------------------------- */
.top-bar {
    background-color: #fff;
    padding: 15px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 20px;
    color: #444;
}

.contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.contact-text .label {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}

.contact-text a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: var(--font-heading);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* -------------------------------------------
   NAVIGATION
------------------------------------------- */
.main-nav {
    background-color: var(--color-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #ccc;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: white;
}

.has-dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
}

.nav-extras {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.search-icon {
    font-size: 14px;
    cursor: pointer;
}

.social-mini {
    display: flex;
    gap: 15px;
}

.social-mini a {
    font-size: 14px;
    color: #ccc;
    background: #3a3e45;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-mini a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* -------------------------------------------
   HERO
------------------------------------------- */
.hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Adding a slight overlay to match contrast if needed */
}

/* Custom Shape Divider from ShapeDivider.app style */
.custom-shape-divider-bottom-1680000000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1680000000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px; /* Controls curve height */
}

.custom-shape-divider-bottom-1680000000 .shape-fill {
    fill: #FFFFFF;
}

/* -------------------------------------------
   INTRO TEXT
------------------------------------------- */
.intro-text {
    padding: 60px 0 50px;
    background: #fff;
}

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

.sub-heading {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    color: #333;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* -------------------------------------------
   SERVICES SECTIONS
------------------------------------------- */
.service-block {
    padding: 0;
}

.bg-gray {
    background-color: var(--color-bg-gray);
}
.bg-light {
    background-color: #ecf0f3; /* Slightly different tone for visual separation if desired, or same */
}
/* The screenshot shows alternating backgrounds that look very similar, mostly light gray.
   Let's create a clear visual break between rows using margin or padding */

.service-block {
    padding: 40px 0; /* Add space between sections */
    background: #f1f4f6;
}

.service-block:nth-child(even) {
    background: #e6eaed; /* Subtle alteration */
}


.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    background: transparent;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    height: 350px; /* Fixed height for consistency */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-group {
    display: flex;
    gap: 15px;
}

/* -------------------------------------------
   INFO FOOTER (Darker)
------------------------------------------- */
.info-footer {
    background-color: var(--color-dark-lighter);
    padding: 60px 0;
    color: #fff;
    border-bottom: 1px solid #3a3e45;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}

.info-item {
    padding: 0 20px;
}

.info-item.border-sides {
    border-left: 1px solid #3a3e45;
    border-right: 1px solid #3a3e45;
}

.icon-box {
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 40px;
    color: #777; /* Or outline style */
    font-weight: 100;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* -------------------------------------------
   MAIN FOOTER (Darkest)
------------------------------------------- */
.main-footer {
    background-color: var(--color-dark);
    padding: 70px 0 30px;
    color: #fff;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-bio {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #33363b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
    color: #aaa;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: #fff;
}

.copyright {
    font-size: 11px;
    color: #555;
    margin-top: 20px;
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #888;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    background: #2b2e34;
    border: none;
    padding: 10px 15px;
    color: #fff;
    width: 100%;
    font-size: 12px;
    outline: none;
    text-transform: uppercase;
}

.newsletter-form button {
    background: var(--color-primary);
    border: none;
    color: #fff;
    padding: 0 15px;
    font-family: var(--font-heading);
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.newsletter-form button:hover {
    background: var(--color-primary-hover);
}

.privacy-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.scroll-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #33363b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #444;
}

.scroll-top:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* -------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------- */
@media (max-width: 992px) {
    .top-contact {
        display: none; /* Hide top details on tablet/mobile similar to screenshot implication */
    }
    
    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none; /* Hidden by default, JS toggles it */
        position: absolute;
        top: 80px; /* Below top bar */
        left: 0;
        width: 100%;
        z-index: 100;
        padding-bottom: 20px;
    }
    
    .main-nav.active {
        display: block;
    }

    .nav-inner {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 15px;
    }

    .nav-extras {
        margin-top: 20px;
    }

    .service-row, .service-row.reverse {
        flex-direction: column;
        gap: 20px;
    }

    .service-img {
        width: 100%;
        height: 250px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-item.border-sides {
        border: none;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        padding: 30px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 28px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}