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

:root {
    --primary-color: #2ea3f2;
    --primary-hover: #1b8adb;
    --secondary-color: #29c4a9;
    --secondary-hover: #1fa78e;
    --dark-color: #020381;
    --dark-bg: #080958;
    --text-dark: #2d3940;
    --text-muted: #4e4e4e;
    --light-bg: #edf2f5;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1320px;
    --header-height: 80px;
    --box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    --card-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(46, 163, 242, 0.03);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.shrink {
    height: 70px;
    background-color: #191919;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.main-header.shrink .nav-link {
    color: var(--white);
}

.main-header.shrink .nav-link:hover, .main-header.shrink .nav-link.active {
    color: #f16334;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.logo svg {
    margin-right: 8px;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover, .nav-link.active {
    color: #f16334;
}

.nav-link svg {
    transition: var(--transition);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    background-color: var(--white);
    min-width: 240px;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 0.8rem 0;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 3px solid #ff6900;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(12px);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-link:hover, .dropdown-link.active {
    background-color: var(--light-bg);
    color: #f16334;
    padding-left: 1.8rem;
}

/* Subdropdown submenu styling */
.dropdown-submenu {
    position: relative;
}

/* Hover bridge to keep submenu open while moving mouse */
.dropdown-submenu::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 25px;
    height: 100%;
    background: transparent;
    display: none;
    z-index: 999;
}

.dropdown-submenu:hover::after {
    display: block;
}

.dropdown-submenu .submenu {
    position: absolute;
    right: 100%;
    top: -0.8rem;
    background-color: var(--white);
    min-width: 240px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 0.8rem 0;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 3px solid #ff6900;
    z-index: 1000;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}


/* Hamburger mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ff6900;
    border-radius: 4px;
    transition: var(--transition);
}

/* Footer Section */
.main-footer {
    background-color: #222222;
    color: #ffffff;
    padding: 5rem 0 0;
    border-top: none;
}

.footer-grid-2 {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-widget p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: #ffffff;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #f16334;
}

.footer-bottom-bar {
    background-color: #191919;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom-content {
    font-size: 0.85rem;
    color: #666666;
    text-align: center;
}


/* Page Hero layout */
.hero-section {
    padding: calc(var(--header-height) + 5rem) 0 6rem;
    background: radial-gradient(circle at 90% 10%, rgba(46, 163, 242, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 10% 90%, rgba(41, 196, 169, 0.05) 0%, transparent 60%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

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

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Section Common Styles */
.section {
    padding: 6rem 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* 3 Column Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 2 Column Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

/* Card layout */
.card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 163, 242, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Partner Logo Grid */
.all-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logos-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.partner-logo {
    font-weight: 700;
    font-family: var(--font-heading);
    color: rgba(45, 57, 64, 0.3);
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border: 2px dashed rgba(0,0,0,0.06);
    border-radius: 8px;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(46, 163, 242, 0.02);
}

/* Gallery Portfolio grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.gallery-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow);
}

.gallery-img {
    height: 280px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--light-bg);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 2rem;
}

.gallery-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.gallery-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact page styling */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.contact-form-wrap {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-info-wrap {
    padding: 1rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(46, 163, 242, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-detail h5 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

/* Services subpage style */
.service-details {
    padding: 6rem 0;
}

.service-main {
    max-width: 800px;
    margin: 0 auto;
}

.service-main h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.service-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .footer-grid-2 {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        overflow-y: auto;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .main-header.shrink .nav-link {
        color: var(--text-dark);
    }
    .main-header.shrink .nav-link:hover, .main-header.shrink .nav-link.active {
        color: #f16334;
    }
    .main-header.shrink .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    .dropdown {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        display: none;
    }
    .nav-item:hover .dropdown {
        transform: none !important;
    }
    .nav-item.active .dropdown {
        display: block;
    }
    .dropdown-submenu .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        display: none;
        border-top: none;
        transform: none !important;
    }
    .dropdown-submenu:hover .submenu {
        transform: none !important;
    }
    .dropdown-submenu.open .submenu {
        display: block;
    }
    .dropdown-submenu-title svg {
        transform: none !important;
        transition: var(--transition);
    }
    .dropdown-submenu.open .dropdown-submenu-title svg {
        transform: rotate(180deg) !important;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-2.col-reverse {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .footer-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Home Page Specific Elements */
.stars {
    color: #ffb400;
    font-size: 3rem;
    margin: 1.2rem 0;
    letter-spacing: 4px;
}

.home-divider {
    display: flex;
    align-items: center;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin: 4rem 0;
    text-transform: uppercase;
}

.home-divider::before, .home-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #01bfd2;
    min-width: 25px;
}

.home-divider::before {
    margin-right: 1.5rem;
}

.home-divider::after {
    margin-left: 1.5rem;
}

.home-divider .divider-text {
    display: inline-block;
    max-width: 90%;
    line-height: 1.4;
    color: var(--text-dark);
}

.home-divider .highlight {
    color: #ff6900;
}

.testimonials-section {
    background-color: #01bfd2;
    color: var(--white);
}

.testimonials-section h2 {
    color: var(--white);
}

/* Boutique section overlay styling */
.boutique-section {
    background-color: #01bfd2;
    color: var(--white);
    position: relative;
    padding: 6.5rem 0;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.boutique-section .container {
    position: relative;
    z-index: 5;
}

.boutique-left {
    max-width: 620px;
}

.boutique-left h2 {
    font-size: 2.3rem;
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.boutique-left h2 span {
    text-decoration: underline;
}

.boutique-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.boutique-left p:last-child {
    margin-bottom: 0;
}

.boutique-right {
    position: absolute;
    right: 4%;
    bottom: -6rem;
    top: -11rem;
    width: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
    z-index: 10;
}

.boutique-right img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
}

@media (max-width: 991px) {
    .boutique-section {
        padding: 4rem 0;
        margin: 2rem 0;
        overflow: hidden;
    }
    .boutique-section .container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .boutique-right {
        position: relative;
        right: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }
    .boutique-right img {
        height: auto;
        width: 100%;
    }
}

.expertise-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background-color: var(--white);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    margin-top: -5rem;
    margin-bottom: -5rem;
}

.expertise-left {
    background-color: #01bfd2;
    color: var(--white);
    padding: 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-left h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.expertise-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: #ffffff;
}

.expertise-left p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 1;
    margin-top: 1rem;
}

.expertise-right {
    padding: 5rem 4rem;
    background-color: var(--white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    align-items: center;
    justify-items: center;
}

.expertise-right img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.expertise-right img[src*="logo-1"] { height: 56px; }
.expertise-right img[src*="logo-2"] { height: 48px; }
.expertise-right img[src*="logo-3"] { height: 58px; }
.expertise-right img[src*="logo-4"] { height: 56px; }
.expertise-right img[src*="logo-5"] { height: 56px; }
.expertise-right img[src*="logo-6"] { height: 50px; }
.expertise-right img[src*="logo-7"] { height: 58px; }
.expertise-right img[src*="wordpress"] { height: 90px; }
.expertise-right img[src*="logo-9"] { height: 48px; }
.expertise-right img[src*="m-soft"] { height: 34px; }
.expertise-right img[src*="logo-15"] { height: 48px; }
.expertise-right img[src*="hubspot"] { height: 36px; }

.expertise-right img:hover {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .expertise-section {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    .expertise-left, .expertise-right {
        padding: 3.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .expertise-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
        padding: 2.5rem 1.5rem;
    }
    .expertise-right img {
        max-width: 100%;
        width: auto;
    }
    .expertise-left {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .expertise-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
        padding: 2rem 1rem;
    }
    .expertise-right img {
        max-width: 100%;
        width: auto;
    }
}

/* Hero section label flush left alignment rule */
[class$="-hero"] {
    position: relative;
    display: flex;
    align-items: center;
    height: 500px !important;
}

[class$="-hero-label"] {
    position: absolute !important;
    left: 0 !important;
    top: calc(50% + 20px) !important;
    transform: translateY(-50%) !important;
    background-color: var(--white) !important;
    padding: 1.2rem 8rem 1.2rem 6rem !important;
    min-width: 650px !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    font-family: var(--font-heading) !important;
    font-size: 50px !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    color: #000000 !important;
    z-index: 2 !important;
}

[class$="-hero-label"] span,
[class$="-hero-label"] strong {
    font-weight: 700 !important;
}

@media (max-width: 991px) {
    [class$="-hero-label"] {
        min-width: 500px !important;
        font-size: 36px !important;
    }
}

@media (max-width: 576px) {
    [class$="-hero-label"] {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto !important;
        padding: 0.8rem 2rem !important;
        min-width: auto !important;
        font-size: 20px !important;
        border-radius: 6px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
        display: inline-block !important;
    }
    [class$="-hero"] {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        height: 320px !important;
    }
}

/* Company Profile Page Specific Elements */
.profile-hero {
    height: 380px;
    background: url('../images/about-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
}

.profile-hero-label {
    background-color: var(--white);
    padding: 1rem 3rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.profile-hero-label span {
    font-weight: 800;
}

/* Testimonial Page Specific Elements */
.testimonial-hero {
    height: 380px;
    background: url('../images/testimonial.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.testimonial-hero-label {
    background-color: var(--white);
    padding: 1rem 3rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.testimonial-hero-label span {
    font-weight: 800;
}

/* Branding Page Specific Elements */
.branding-hero {
    height: 380px;
    background: url('../images/business-branding.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.branding-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Consulting Page Specific Elements */
.consulting-hero {
    height: 380px;
    background: url('../images/consulting-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.consulting-hero-label {
    background-color: var(--white);
    padding: 1rem 3rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.consulting-hero-label span {
    font-weight: 800;
}

/* Marketing Page Specific Elements */
.marketing-hero {
    height: 380px;
    background: url('../images/marketing-banner.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.marketing-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* SEO Page Specific Elements */
.seo-hero {
    height: 380px;
    background: url('../images/seo-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.seo-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* PPC Page Specific Elements */
.ppc-hero {
    height: 380px;
    background: url('../images/ppc-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.ppc-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Social Media Page Specific Elements */
.social-hero {
    height: 380px;
    background: url('../images/social-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.social-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Website Design Page Specific Elements */
.webdesign-hero {
    height: 380px;
    background: url('../images/webdesign-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.webdesign-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Graphic Design Page Specific Elements */
.graphic-hero {
    height: 380px;
    background: url('../images/graphic-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.graphic-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Research & Content Page Specific Elements */
.research-hero {
    height: 380px;
    background: url('../images/research-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.research-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Photography Page Specific Elements */
.photography-hero {
    height: 380px;
    background: url('../images/photography-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.photography-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Videography Page Specific Elements */
.videography-hero {
    height: 380px;
    background: url('../images/videography-banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.videography-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.videography-showcase-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .videography-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Gallery Page Specific Elements */
.gallery-hero {
    height: 380px;
    background: url('../images/gallery-banner.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.gallery-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Contact Page Specific Elements */
.contact-hero {
    height: 380px;
    background: url('../images/contact-banner.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.contact-hero-label {
    background-color: var(--white);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.contact-custom-form {
    background-color: transparent;
}

.contact-custom-form h4 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.contact-custom-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-custom-form .form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-custom-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 2px solid #cbd5e1;
    border-radius: 0;
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    width: 100%;
    margin-bottom: 1.8rem;
    transition: var(--transition);
}

.contact-custom-form .form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.contact-custom-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Inline Validation Styles */
.contact-custom-form .form-group {
    position: relative;
}

.inline-error {
    display: block;
    color: #e53e3e;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: -1rem;
    margin-bottom: 1rem;
    padding-left: 2px;
    animation: errorSlide 0.3s ease-out;
}

@keyframes errorSlide {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-custom-form .form-control.input-error {
    border-bottom-color: #e53e3e !important;
}

.contact-custom-form .form-control.input-valid {
    border-bottom-color: #29c4a9 !important;
}

.contact-custom-form .btn-submit {
    background-color: #ff6900;
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-custom-form .btn-submit:hover {
    background-color: #e05c00;
    transform: translateY(-2px);
    box-shadow: none;
}

.section-bg {
    display: block;
    width: 100vw;
    max-width: 100%;
    background-color: var(--white);
    overflow: hidden;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    padding: 6rem 20px;
    align-items: start;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .contact-layout-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 20px;
    }
    .contact-text-col,
    .contact-form-col {
        width: 100% !important;
        max-width: 100% !important;
    }
    .contact-text-col h2 {
        font-size: 1.6rem !important;
        text-align: center;
    }
    .contact-text-col p {
        font-size: 1rem !important;
        text-align: center;
    }
    .contact-custom-form .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-custom-form h4 {
        text-align: center;
    }
    .contact-custom-form .btn-submit {
        width: 100%;
        text-align: center;
    }
    .contact-custom-form {
        padding-inline: 20px;
    }
    .section,
    section.section {
        padding: 2.5rem 0 !important;
    }
}

@media (max-width: 480px) {
    .contact-layout-grid {
        padding: 2rem 0;
        gap: 2rem;
    }
    .contact-text-col h2 {
        font-size: 1.35rem !important;
        line-height: 1.4 !important;
    }
    .contact-text-col p {
        font-size: 0.95rem !important;
    }
    .contact-custom-form .form-control {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .contact-custom-form .btn-submit {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
}

/* CTA Call Banner Styles */
.cta-title {
    font-size: 2.7rem;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.35;
}

.cta-tel {
    color: #ff6900;
    text-decoration: underline;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.7rem;
    }
}

.testimonials-text-col {
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .testimonials-text-col {
        padding-left: 0;
    }
}

/* SEO Case Study Grid & Cards */
.seo-case-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
}

.seo-case-card {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
}

.seo-case-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .seo-case-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Videography Statistics Overlay Card */
.video-stat-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.video-stat-wrapper img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

.video-stat-card {
    position: absolute;
    bottom: -15px;
    right: -30px;
    background-color: var(--white);
    padding: 1.2rem 1.5rem;
    border-left: 5px solid #01bfd2;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.video-stat-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .video-stat-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 1.5rem;
        max-width: 100%;
        box-shadow: none;
        border-left-width: 4px;
        padding: 1rem;
    }
    .video-stat-wrapper {
        display: block;
        margin-bottom: 0;
    }
}

/* Home Page Reason Section Titles */
.reason-title {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #000000;
    display: inline-block;
    position: relative;
    padding-bottom: 1.2rem;
    font-weight: 700;
}

.reason-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #000000;
}

.reason-title span.orange-text {
    color: #ff6900;
}

.reason-title span.number-text {
    color: #ff6900;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .reason-title {
        display: block !important;
        text-align: center !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem !important;
    }
    .reason-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Hero Section Typewriter Text Rotator */
.hero-animated-wrapper {
    margin: 1.5rem 0;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    height: 3rem;
}

.typewriter-orange {
    color: #ff6900;
}

.typewriter-cursor {
    color: #ff6900;
    animation: blinkCursor 0.8s infinite;
    font-weight: 300;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .hero-animated-wrapper {
        font-size: 1.6rem;
        margin: 1rem 0;
        text-align: center;
        height: auto;
    }
    .stars {
        font-size: 2.2rem;
    }
    .home-divider {
        font-size: 1.15rem;
        margin: 2.5rem 0;
    }
    .home-divider::before {
        margin-right: 0.8rem !important;
    }
    .home-divider::after {
        margin-left: 0.8rem !important;
    }
    
    /* Mobile Menu Underlined Bold Links Override */
    .nav-menu a,
    .nav-menu .dropdown-submenu-title {
        text-decoration: underline !important;
        font-weight: 700 !important;
        color: #000000 !important;
    }
    .nav-menu a.active,
    .nav-menu .active > a,
    .nav-menu .dropdown-submenu-title.active {
        color: #ff6900 !important;
    }
}

/* Videography Page Stat Card Styles */
.video-stat-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.video-stat-wrapper img {
    margin: 0 auto 1.5rem auto;
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto;
}

.video-stat-card {
    text-align: left;
    border-left: 3px solid #01bfd2;
    padding-left: 1.5rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Mobile Hamburger to X Transformation */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

















