/* Creative Business Alchemy Styles */
/* Unique color variables following design guide */
:root {
    --BaseColorPrimary: #073b4c;
    --LightBackgroundShade: #e6ebee;
    --DarkTextEmphasis: #052633;
    --AccentColorCreative: #1a6b7d;
    --HoverStateColor: #0a4d5c;
    --TextColorSecondary: #426b7a;
    --BorderColorSubtle: #b8c9d1;
    --SuccessColorGreen: #28a745;
    --BackgroundWhite: #ffffff;
}

/* Global foundation styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--DarkTextEmphasis);
    background-color: var(--BackgroundWhite);
}

/* Typography hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 21px;
}

h1.MainPageHeading {
    font-size: 3.2rem;
    color: var(--BaseColorPrimary);
}

h2.SectionTitleHeading {
    font-size: 2.8rem;
    color: var(--DarkTextEmphasis);
    margin-bottom: 34px;
}

h3 {
    font-size: 1.9rem;
    color: var(--BaseColorPrimary);
}

/* Container and layout utilities */
.MainContentWrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 27px;
}

/* Navigation styles with mobile adaptation */
.TopNavigationZone {
    background-color: var(--BackgroundWhite);
    box-shadow: 0 3px 13px rgba(7, 59, 76, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.NavigationBarContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.BrandLogoElement img {
    height: 48px;
    width: auto;
}

.MobileMenuToggle {
    display: none;
}

.ToggleLabelElement {
    display: none;
}

.BurgerMenuIcon {
    width: 30px;
    height: 3px;
    background: var(--DarkTextEmphasis);
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.BurgerMenuIcon:before,
.BurgerMenuIcon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--DarkTextEmphasis);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.BurgerMenuIcon:before {
    top: -8px;
}

.BurgerMenuIcon:after {
    top: 8px;
}

.MenuItemsList {
    display: flex;
    gap: 34px;
    list-style: none;
}

.MenuLinkElement {
    color: var(--DarkTextEmphasis);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.MenuLinkElement:hover {
    color: var(--BaseColorPrimary);
}

/* Mobile navigation implementation */
@media screen and (max-width: 890px) {
    .ToggleLabelElement {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .NavigationLinksWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--BackgroundWhite);
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        padding-top: 89px;
        display: flex;
        justify-content: center;
    }

    .MenuItemsList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 27px;
    }

    .SingleNavigationItem {
        width: 100%;
        text-align: center;
    }

    .MenuLinkElement {
        display: inline-block;
        padding: 13px 27px;
        font-size: 19px;
        color: var(--DarkTextEmphasis);
    }

    .MobileMenuToggle:checked ~ .NavigationLinksWrapper {
        left: 0;
    }

    .MobileMenuToggle:checked ~ .ToggleLabelElement .BurgerMenuIcon {
        background: transparent;
    }

    .MobileMenuToggle:checked ~ .ToggleLabelElement .BurgerMenuIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MobileMenuToggle:checked ~ .ToggleLabelElement .BurgerMenuIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 891px) {
    .NavigationLinksWrapper {
        display: flex;
        align-items: center;
    }
}

/* Hero section asymmetric layout */
.HeroPresentationZone {
    background: linear-gradient(147deg, var(--LightBackgroundShade) 0%, #f8fafc 100%);
    padding: 67px 0 89px;
}

.HeroContentGrid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 55px;
    align-items: center;
}

.TextContentColumn {
    padding-right: 34px;
}

.HeroDescriptionText {
    font-size: 1.25rem;
    color: var(--TextColorSecondary);
    margin-bottom: 27px;
}

.SecondaryHeroText {
    font-size: 1.1rem;
    color: var(--DarkTextEmphasis);
    margin-bottom: 42px;
}

.ActionButtonsArea {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryActionButton {
    background-color: var(--BaseColorPrimary);
    color: var(--BackgroundWhite);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.1rem;
    display: inline-block;
}

.PrimaryActionButton:hover {
    background-color: var(--HoverStateColor);
    transform: translateY(-2px);
}

.SecondaryActionButton {
    border: 2px solid var(--BaseColorPrimary);
    color: var(--BaseColorPrimary);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
}

.SecondaryActionButton:hover {
    background-color: var(--BaseColorPrimary);
    color: var(--BackgroundWhite);
}

.HeroImageElement {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 13px 34px rgba(7, 59, 76, 0.15);
}

/* Creative business fusion section */
.CreativeBusinessFusionZone {
    padding: 89px 0;
    background-color: var(--BackgroundWhite);
}

.FusionContentLayout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 67px;
    align-items: center;
}

.WorkspaceImageElement {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 27px rgba(7, 59, 76, 0.12);
}

.PrimaryContentParagraph {
    font-size: 1.15rem;
    margin-bottom: 21px;
    line-height: 1.8;
}

.SecondaryContentParagraph {
    font-size: 1.05rem;
    color: var(--TextColorSecondary);
    margin-bottom: 34px;
}

.BenefitsListArea {
    margin-top: 34px;
}

.BenefitsSubheading {
    font-size: 1.3rem;
    margin-bottom: 21px;
    color: var(--BaseColorPrimary);
}

.BenefitPoint {
    padding: 13px 0;
    border-left: 4px solid var(--AccentColorCreative);
    padding-left: 21px;
    margin-bottom: 13px;
    font-weight: 500;
}

/* Success stories section */
.ArtisticSuccessZone {
    background-color: var(--LightBackgroundShade);
    padding: 89px 0;
}

.SuccessStoriesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 42px;
}

.StoryCard {
    background-color: var(--BackgroundWhite);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 21px rgba(7, 59, 76, 0.1);
    transition: transform 0.3s ease;
}

.StoryCard:hover {
    transform: translateY(-5px);
}

.StoryImageElement {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.StoryContentArea {
    padding: 32px;
}

.ClientSuccessTitle {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.StoryDescription {
    font-style: italic;
    line-height: 1.7;
    color: var(--TextColorSecondary);
}

/* Portfolio showcase section */
.PortfolioShowcaseZone {
    padding: 89px 0;
    background-color: var(--BackgroundWhite);
}

.ShowcaseContentGrid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 55px;
    align-items: center;
}

.ShowcaseContentParagraph {
    font-size: 1.1rem;
    margin-bottom: 27px;
}

.ProcessStepsArea {
    margin-top: 27px;
}

.ProcessStep {
    padding: 18px;
    margin-bottom: 16px;
    background-color: var(--LightBackgroundShade);
    border-left: 5px solid var(--BaseColorPrimary);
}

.ShowcaseImageElement {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 13px 34px rgba(7, 59, 76, 0.15);
}

/* Call to action section */
.CTASection {
    background: linear-gradient(135deg, var(--BaseColorPrimary) 0%, var(--AccentColorCreative) 100%);
    padding: 76px 0;
    color: var(--BackgroundWhite);
    text-align: center;
}

.CTAMainHeading {
    color: var(--BackgroundWhite);
    font-size: 2.6rem;
    margin-bottom: 27px;
}

.CTADescriptionText {
    font-size: 1.2rem;
    margin-bottom: 42px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.MainCTAButton {
    background-color: var(--BackgroundWhite);
    color: var(--BaseColorPrimary);
    padding: 18px 42px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.MainCTAButton:hover {
    background-color: var(--LightBackgroundShade);
    transform: translateY(-3px);
    box-shadow: 0 8px 21px rgba(255, 255, 255, 0.3);
}

.CTASecondaryText {
    margin-top: 21px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Contact form section */
.ContactFormSection {
    padding: 89px 0;
    background-color: var(--LightBackgroundShade);
}

.ContactContentLayout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 67px;
}

.ContactSectionHeading {
    color: var(--BaseColorPrimary);
    margin-bottom: 21px;
}

.ContactDescriptionText {
    font-size: 1.1rem;
    margin-bottom: 34px;
    line-height: 1.7;
}

.CompanyContactDetails {
    background-color: var(--BackgroundWhite);
    padding: 34px;
    border-radius: 0;
    box-shadow: 0 5px 16px rgba(7, 59, 76, 0.08);
}

.LocationInfoTitle {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: var(--BaseColorPrimary);
}

.AddressLine {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.PhoneNumber {
    font-weight: 600;
    color: var(--BaseColorPrimary);
    font-size: 1.1rem;
    margin-top: 16px;
}

/* Form styling */
.ConsultationRequestForm {
    background-color: var(--BackgroundWhite);
    padding: 42px;
    border-radius: 0;
    box-shadow: 0 8px 27px rgba(7, 59, 76, 0.12);
}

.FormFieldGroup {
    margin-bottom: 27px;
}

.FormFieldLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--DarkTextEmphasis);
}

.FormInputField,
.FormSelectField,
.FormTextareaField {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--BorderColorSubtle);
    border-radius: 0;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.FormInputField:focus,
.FormSelectField:focus,
.FormTextareaField:focus {
    outline: none;
    border-color: var(--BaseColorPrimary);
}

.FormTextareaField {
    resize: vertical;
    min-height: 120px;
}

.FormSubmitButton {
    background-color: var(--BaseColorPrimary);
    color: var(--BackgroundWhite);
    padding: 16px 34px;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.FormSubmitButton:hover {
    background-color: var(--HoverStateColor);
    transform: translateY(-2px);
}

/* Footer section */
.FooterSection {
    background-color: var(--DarkTextEmphasis);
    color: var(--LightBackgroundShade);
    padding: 55px 0 27px;
}

.FooterContentGrid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 34px;
}

.FooterBrandName {
    color: var(--LightBackgroundShade);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.FooterDescriptionText {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.FooterLinksHeading {
    color: var(--LightBackgroundShade);
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.FooterLinksList {
    list-style: none;
}

.FooterLinkItem {
    margin-bottom: 8px;
}

.FooterNavigationLink,
.FooterPolicyLink {
    color: var(--LightBackgroundShade);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.FooterNavigationLink:hover,
.FooterPolicyLink:hover {
    opacity: 1;
}

.FooterBottomBar {
    border-top: 1px solid rgba(230, 235, 238, 0.2);
    padding-top: 21px;
    text-align: center;
}

.CopyrightText {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Responsive design implementation */
@media screen and (max-width: 1280px) {
    .MainContentWrapper {
        padding: 0 21px;
    }

    h1.MainPageHeading {
        font-size: 2.8rem;
    }

    .HeroContentGrid {
        gap: 42px;
    }
}

@media screen and (max-width: 890px) {
    .HeroContentGrid,
    .FusionContentLayout,
    .ShowcaseContentGrid,
    .ContactContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .TextContentColumn {
        padding-right: 0;
    }

    h1.MainPageHeading {
        font-size: 2.4rem;
    }

    h2.SectionTitleHeading {
        font-size: 2.2rem;
    }

    .HeroPresentationZone {
        padding: 42px 0 55px;
    }

    .CreativeBusinessFusionZone,
    .ArtisticSuccessZone,
    .PortfolioShowcaseZone {
        padding: 55px 0;
    }

    .SuccessStoriesGrid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .ActionButtonsArea {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryActionButton,
    .SecondaryActionButton {
        width: 100%;
        text-align: center;
        max-width: 320px;
    }

    .FooterContentGrid {
        grid-template-columns: 1fr;
        gap: 27px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .MainContentWrapper {
        padding: 0 16px;
    }

    h1.MainPageHeading {
        font-size: 2rem;
    }

    .HeroDescriptionText {
        font-size: 1.1rem;
    }

    .SuccessStoriesGrid {
        grid-template-columns: 1fr;
    }

    .StoryCard {
        min-width: auto;
    }

    .ConsultationRequestForm {
        padding: 27px;
    }

    .CompanyContactDetails {
        padding: 21px;
    }
}

/* Services Page Specific Styles */
.ServicesHeroZone {
    background: linear-gradient(132deg, var(--LightBackgroundShade) 0%, #f1f6f8 100%);
    padding: 76px 0 55px;
    text-align: center;
}

.ServicesMainHeading {
    font-size: 2.9rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 27px;
}

.ServicesHeroDescription {
    font-size: 1.2rem;
    color: var(--TextColorSecondary);
    max-width: 720px;
    margin: 0 auto;
}

.ServicesShowcaseZone {
    padding: 89px 0;
    background-color: var(--BackgroundWhite);
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 42px;
}

.ServiceCard {
    background-color: var(--BackgroundWhite);
    border-radius: 0;
    box-shadow: 0 13px 34px rgba(7, 59, 76, 0.12);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ServiceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(7, 59, 76, 0.18);
}

.ServiceImageElement {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.ServiceContentBlock {
    padding: 42px 34px;
}

.ServiceTitle {
    font-size: 1.6rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 18px;
}

.ServiceDescription {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 27px;
    color: var(--DarkTextEmphasis);
}

.ServiceFeatures {
    margin-bottom: 34px;
}

.FeatureItem {
    padding: 8px 0;
    border-left: 3px solid var(--AccentColorCreative);
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--TextColorSecondary);
}

.ServicePricing {
    margin-bottom: 27px;
    text-align: center;
    padding: 21px;
    background-color: var(--LightBackgroundShade);
}

.PriceAmount {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--BaseColorPrimary);
    font-family: 'Oswald', sans-serif;
}

.PriceDetails {
    font-size: 0.95rem;
    color: var(--TextColorSecondary);
    margin-top: 5px;
}

.ServiceBookingButton {
    background-color: var(--BaseColorPrimary);
    color: var(--BackgroundWhite);
    padding: 16px 27px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.ServiceBookingButton:hover {
    background-color: var(--HoverStateColor);
    transform: translateY(-2px);
}

.ServicesInfoZone {
    background-color: var(--LightBackgroundShade);
    padding: 76px 0;
}

.ServicesInfoHeading {
    text-align: center;
    font-size: 2.4rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 55px;
}

.InfoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.InfoBlock {
    background-color: var(--BackgroundWhite);
    padding: 34px;
    border-radius: 0;
    box-shadow: 0 8px 21px rgba(7, 59, 76, 0.1);
    text-align: center;
}

.InfoBlockHeading {
    font-size: 1.4rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 16px;
}

.InfoBlockText {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--TextColorSecondary);
}

/* Thank You Page Specific Styles */
.ThankYouMainZone {
    padding: 89px 0;
    background-color: var(--LightBackgroundShade);
}

.ThankYouContent {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 67px;
    align-items: center;
}

.ThankYouImageElement {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 13px 34px rgba(7, 59, 76, 0.15);
}

.ThankYouMainHeading {
    font-size: 2.8rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 27px;
}

.ThankYouDescription {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 42px;
    color: var(--DarkTextEmphasis);
}

.NextStepsArea {
    margin-bottom: 42px;
}

.NextStepsHeading {
    font-size: 1.8rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 27px;
}

.StepsList {
    background-color: var(--BackgroundWhite);
    padding: 34px;
    border-radius: 0;
    box-shadow: 0 8px 21px rgba(7, 59, 76, 0.1);
}

.SingleStep {
    padding: 21px 0;
    border-bottom: 1px solid var(--BorderColorSubtle);
}

.SingleStep:last-child {
    border-bottom: none;
}

.StepHeading {
    font-size: 1.3rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 13px;
}

.StepDescription {
    font-size: 1rem;
    color: var(--TextColorSecondary);
    line-height: 1.6;
}

.ThankYouActions {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryReturnButton {
    background-color: var(--BaseColorPrimary);
    color: var(--BackgroundWhite);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.PrimaryReturnButton:hover {
    background-color: var(--HoverStateColor);
    transform: translateY(-2px);
}

.SecondaryExploreButton {
    border: 2px solid var(--BaseColorPrimary);
    color: var(--BaseColorPrimary);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.SecondaryExploreButton:hover {
    background-color: var(--BaseColorPrimary);
    color: var(--BackgroundWhite);
}

.ResourcesZone {
    padding: 76px 0;
    background-color: var(--BackgroundWhite);
}

.ResourcesHeading {
    text-align: center;
    font-size: 2.2rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 21px;
}

.ResourcesDescription {
    text-align: center;
    font-size: 1.1rem;
    color: var(--TextColorSecondary);
    max-width: 680px;
    margin: 0 auto 42px;
}

.ResourcesList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 27px;
}

.ResourceItem {
    padding: 27px;
    background-color: var(--LightBackgroundShade);
    border-radius: 0;
    border-left: 5px solid var(--AccentColorCreative);
}

.ResourceTitle {
    font-size: 1.3rem;
    color: var(--BaseColorPrimary);
    margin-bottom: 13px;
}

.ResourceText {
    font-size: 1rem;
    color: var(--TextColorSecondary);
    line-height: 1.6;
}

/* Responsive adjustments for new pages */
@media screen and (max-width: 890px) {
    .ServicesGrid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .ServiceCard {
        min-width: auto;
    }

    .ThankYouContent {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ThankYouActions {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryReturnButton,
    .SecondaryExploreButton {
        width: 100%;
        text-align: center;
        max-width: 320px;
    }

    .InfoGrid,
    .ResourcesList {
        grid-template-columns: 1fr;
        gap: 21px;
    }
}

@media screen and (max-width: 640px) {
    .ServicesMainHeading {
        font-size: 2.3rem;
    }

    .ThankYouMainHeading {
        font-size: 2.2rem;
    }

    .ServiceContentBlock {
        padding: 27px 21px;
    }

    .ServicesGrid {
        grid-template-columns: 1fr;
    }

    .StepsList {
        padding: 21px;
    }
}