/*
Theme Name: Linnet
Author: LInnet
Author URI: http://linnetdigital.com/
Version: 1.1
Text Domain: Linnet

Linnet  2015 Linnet Digital
*/
/*
LINNET - GRANT THORNTON INSPIRED STYLES
Clean, professional business design with authoritative layout - keeping Linnet content
*/
/*
LINNET - ACTUAL GRANT THORNTON INSPIRED DESIGN
Based on their actual layout structure and design approach
*/

/* GT Color Scheme */
:root {
    --gt-orange: #e06800;
    --gt-orange-dark: #e06800;
    --gt-navy: #1e3a5f;
    --gt-navy-light: #2c5aa0;
    --gt-gray: #666666;
    --gt-light-gray: #f5f5f5;
    --gt-border: #ddd;
    --white: #ffffff;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --text-orange: #e06800;
    --text-navy:#1e3a5f;
    --text-yellow: #f9cb4e;
}



/* GT Typography */
body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-navy);
    margin: 0 0 20px 0;
}

h1 { font-size: 56px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

h1 {

}

p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: var(--text-medium);
}

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


/* Custom styled bullets with icon and color */
ul.custom-bullets, .service-content ul {
    list-style: none;
    padding-left: 0;
}

ul.custom-bullets li, .service-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Option 1: Circular bullet with checkmark feel */
ul.custom-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2c7da0 0%, #1e5f7a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Option 2: Diamond/square rotated bullet */
ul.custom-bullets.diamond li::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #2c7da0;
    transform: rotate(45deg);
    border-radius: 2px;
    top: 8px;
}

/* Option 3: Arrow bullet */
.service-content ul li::before {
    content: "→";
    background: transparent;
    color: var(--gt-orange);
    font-size: 20px;
    font-weight: bold;
    width: auto;
    height: auto;
    box-shadow: none;
    padding-right:15px;
}

/* Hover effect */
.service-content ul li:hover::before {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.service-content ul li:hover::before {
    transform: rotate(45deg) scale(1.1);
}

/* IMPROVED HEADER - Thicker, Scrollable, with Enhanced Features */

.new-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gt-border);
    height: 108px; /* 20% thicker than original 90px */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Scrolled state - 30% reduction in thickness */
.new-header.scrolled {
    height: 85px; /* 30% thinner when scrolled */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    align-items: center; /* This centers vertically */
    justify-content: space-between;
    height: 100%; /* This ensures it uses the full 108px */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 108px; /* Ensures minimum height */
}

/* LOGO - Enhanced with scroll transitions */
.new-logo, .desktop-nav, .mobile-toggle {
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

.new-logo img {
    height: 72px; /* Larger for thicker header */
    width: auto;
    transition: all 0.3s ease;
}

.new-header.scrolled .new-logo img {
    height: 50px; /* Smaller when scrolled */
}

/* IMPROVED DESKTOP NAVIGATION - Perfect vertical centering */
.desktop-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
    height: 100%;
}

.desktop-menu li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%; /* Ensures each menu item uses full height */
    justify-content: center; /* Centers the content */
}

.desktop-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    padding: 10px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px; /* Increased gap for larger arrow */
    height: 100%;
}

.desktop-menu li a:hover {
    color: var(--gt-orange);
}

/* DROPDOWN STYLING */
.has-dropdown > a {
    cursor: pointer;
}

/* LARGER DROPDOWN ARROW */
.dropdown-arrow {
    font-size: 16px; /* Increased from 12px */
    transition: transform 0.3s ease;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    margin-left: 5px;
    font-weight: bold;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--gt-orange);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gt-border);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: none;
}

/* Show dropdown on hover OR when display is set to block */
.has-dropdown:hover .dropdown-menu,
.dropdown-menu[style*="display: block"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
}

.dropdown-menu li {
    width: 100%;
    height: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    height: auto;
    gap: 0;
}

.dropdown-menu li a:hover {
    background: var(--gt-light-gray);
    color: var(--gt-orange);
}

/* MOBILE TOGGLE - Updated for thicker header */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* MOBILE NAVIGATION - Updated positioning */
.mobile-nav {
    position: fixed;
    top: 108px; /* Matches thicker header */
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 20px;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    overflow-y: auto;
}

/* Dynamic mobile nav positioning when header is scrolled */
.new-header.scrolled ~ .mobile-nav.active,
.mobile-nav.scrolled-nav {
    top: 76px;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--gt-border);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu li a {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.mobile-menu li a:hover {
    color: var(--gt-orange);
}

/* Mobile submenu styling */
.mobile-submenu a {
    padding-left: 20px !important;
    color: var(--text-medium) !important;
    font-size: 16px !important;
}

.mobile-submenu a:hover {
    color: var(--gt-orange) !important;
}

/* BODY PADDING ADJUSTMENT */
body {
    padding-top: 108px; /* Updated for thicker header */
    transition: padding-top 0.3s ease;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .new-logo img {
        height: 62px; /* Proportionally larger on mobile */
    }
    
    .new-header.scrolled .new-logo img {
        height: 44px; /* Smaller when scrolled on mobile */
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .new-header {
        height: 95px; /* Thicker on mobile */
    }
    
    .new-header.scrolled {
        height: 67px; /* Scrolled state on mobile */
    }
    
    .mobile-nav {
        top: 95px;
    }
    
    .new-header.scrolled ~ .mobile-nav.active,
    .mobile-nav.scrolled-nav {
        top: 67px;
    }
    
    body {
        padding-top: 95px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .desktop-menu {
        gap: 30px;
    }
    
    .desktop-menu li a {
        font-size: 17px;
    }
    
    .dropdown-arrow {
        font-size: 14px;
    }
}

/* WORDPRESS ADMIN BAR ADJUSTMENTS */
body.admin-bar .new-header {
    top: 32px;
}

body.admin-bar {
    padding-top: 140px; /* 32px admin bar + 108px header */
}

body.admin-bar .mobile-nav {
    top: 140px;
}

body.admin-bar .new-header.scrolled ~ .mobile-nav.active {
    top: 108px; /* 32px admin bar + 76px scrolled header */
}

@media screen and (max-width: 782px) {
    body.admin-bar .new-header {
        top: 46px;
    }
    
    body.admin-bar {
        padding-top: 141px; /* 46px admin bar + 95px header on mobile */
    }
    
    body.admin-bar .mobile-nav {
        top: 141px;
    }
    
    body.admin-bar .new-header.scrolled ~ .mobile-nav.active {
        top: 113px; /* 46px admin bar + 67px scrolled header */
    }
}

/* ACCESSIBILITY IMPROVEMENTS */
.dropdown-menu li a:focus,
.desktop-menu li a:focus {
    outline: 2px solid var(--gt-orange);
    outline-offset: 2px;
}

.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
}

/* BODY PADDING ADJUSTMENT */
body {
    padding-top: 90px; /* Updated from 80px */
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .new-logo img {
        height: 50px; /* Smaller on mobile but still larger than before */
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .new-header {
        height: 80px; /* Slightly smaller on mobile */
    }
    
    .mobile-nav {
        top: 80px;
    }
    
    body {
        padding-top: 80px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .desktop-menu {
        gap: 30px;
    }
    
    .desktop-menu li a {
        font-size: 17px;
    }
}

/* WORDPRESS ADMIN BAR ADJUSTMENTS */
body.admin-bar .new-header {
    top: 32px;
}

body.admin-bar {
    padding-top: 122px; /* 32px admin bar + 90px header */
}

body.admin-bar .mobile-nav {
    top: 122px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .new-header {
        top: 46px;
    }
    
    body.admin-bar {
        padding-top: 126px; /* 46px admin bar + 80px header on mobile */
    }
    
    body.admin-bar .mobile-nav {
        top: 126px;
    }
}

/* ACCESSIBILITY IMPROVEMENTS */
.dropdown-menu li a:focus,
.desktop-menu li a:focus {
    outline: 2px solid var(--gt-orange);
    outline-offset: 2px;
}

/* Ensure dropdown stays open when navigating with keyboard */
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

/* GT HERO SECTION - Large banner style */
.gt-hero {
    background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(30, 58, 95, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f47920" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    min-height: 350px;
    display: flex;
    align-items: center;
}
.gt-hero.small
{
    padding: 40px 0;

}

.gt-hero-content {
    max-width: 800px;
    margin: 0 auto;   
}

.gt-hero-content.mask{
    background-color:rgba(0,0,0,0.5);
    padding-top:20px; padding-bottom:20px;
}

.gt-hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.1;
}

.gt-hero p {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.gt-hero-tagline {
    color: var(--gt-orange);
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Hero animation styles */
.gt-hero-content {
    opacity: 0;
    animation: flyInFromBottom 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.gt-hero-tagline {
    opacity: 0;
    animation: flyInFromBottom 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.gt-hero h1 {
    opacity: 0;
    animation: flyInFromBottom 1s ease-out forwards;
    animation-delay: 0.7s;
        color:(var(--text-yellow));
        color:#f9cb4e;
}

.gt-hero p {
    opacity: 0;
    animation: flyInFromBottom 1s ease-out forwards;
    animation-delay: 0.9s;
}

.gt-hero-actions {
    opacity: 0;
    animation: flyInFromBottom 1s ease-out forwards;
    animation-delay: 1.1s;
}

@keyframes flyInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GT Buttons */
.gt-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gt-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    margin: 0 10px 10px 0;
}

.gt-btn:hover {
    background: var(--gt-orange-dark);
    color: var(--white);
}

.gt-btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.gt-btn-secondary:hover {
    background: var(--white);
    color: var(--gt-navy);
}

/* GT INTRO SECTION - Text-focused like GT */
.gt-intro {
    padding: 40px 0;
    background: var(--white);
}

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

.gt-intro h2 {
    font-size: 36px;
    color: var(--text-navy);
    margin-bottom: 30px;
}

.gt-intro p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* GT STATS SECTION - Simple numbers */
/* GT NUMBERED STATS SECTION - Grant Thornton Style */
/* GT NUMBERED STATS SECTION - True Grant Thornton Style */
.gt-stats {
    padding: 60px 0;
    background: var(--gt-light-gray);
}

.gt-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Third item spans both columns and centers itself */
.gt-stat-item:nth-child(3) {
    grid-column: 1 / -1; /* Spans full width */
    max-width: 480px; /* Same width as other items */
    margin: 0 auto; /* Centers horizontally */
}

.gt-stat-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: left;
}


.gt-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.gt-stat-number {
    font-size: 64px;
    font-weight: bold;
    color: #eb6145; /* Coral color for numbers */
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.gt-stat-label {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.gt-stat-desc {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Mobile responsive for stats */
@media (max-width: 768px) {
    .gt-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gt-stat-item:nth-child(3) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }

    .gt-stat-item {
        padding: 30px 25px;
        text-align: center;
    }
    
    .gt-stat-number {
        font-size: 56px;
        margin-bottom: 15px;
    }
    
    .gt-stat-label {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .gt-stat-desc {
        font-size: 14px;
    }
}

/* Tablet responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .gt-stats-grid {
        gap: 25px;
    }
    
    .gt-stat-item {
        padding: 35px 25px;
    }
    
    .gt-stat-number {
        font-size: 58px;
    }
}


/* Grant Thornton Style Services Blocks - Enhanced Professional Version */

.gt-services {
    padding: 0px 0;
    background: var(--white);
}

.gt-services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--gt-navy);
    padding-top:20px;
}

.gt-services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--text-medium);
}

/* GT Style Services Grid - Two per row */
.gt-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual service block - Enhanced Professional Design */
.gt-service-block {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 5px 5px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.gt-service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 121, 32, 0.02) 0%, rgba(30, 58, 95, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gt-service-block:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: rgba(244, 121, 32, 0.3);
    color: inherit;
    text-decoration: none;
    transform: translateY(-4px);
}

.gt-service-block:hover::before {
    opacity: 1;
}

/* Service blocks animate in sequence */
.gt-service-block {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpProfessional 0.6s ease-out forwards;
}

.gt-service-block:nth-child(1) { animation-delay: 0.1s; }
.gt-service-block:nth-child(2) { animation-delay: 0.2s; }
.gt-service-block:nth-child(3) { animation-delay: 0.3s; }
.gt-service-block:nth-child(4) { animation-delay: 0.4s; }
.gt-service-block:nth-child(5) { animation-delay: 0.5s; }
.gt-service-block:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUpProfessional {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .gt-hero-content,
    .gt-hero-tagline,
    .gt-hero h1,
    .gt-hero p,
    .gt-hero-actions,
    .gt-service-block {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Service block content wrapper - Updated for arrow positioning */
.gt-service-content {
    display: block;
    position: relative;
    z-index: 2;
    padding:35px
}

/* Arrow moved to top-right corner */
.gt-service-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(244, 121, 32, 0.1);
    border: 1px solid rgba(244, 121, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 3;
}

.gt-service-arrow::after {
    content: "→";
    font-size: 16px;
    color: var(--gt-orange);
    transition: all 0.3s ease;
    font-weight: bold;
}

.gt-service-block:hover .gt-service-arrow {
    background: var(--gt-orange);
    border-color: var(--gt-orange);
    transform: translateX(8px) scale(1.1);
    box-shadow: 0 4px 12px rgba(244, 121, 32, 0.3);
}

.gt-service-block:hover .gt-service-arrow::after {
    color: var(--white);
    transform: translateX(2px);
}

/* Focus state also updated */
.gt-service-block:focus .gt-service-arrow {
    background: var(--gt-orange);
    border-color: var(--gt-orange);
    transform: translateX(8px) scale(1.1);
}


/* Service content adjustments for arrow positioning */
.gt-service-text {
    padding-right: 60px; /* Space for the arrow */
}

.gt-service-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-navy);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.gt-service-block:hover .gt-service-title {
    color: var(--gt-orange);
}

.gt-service-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Enhanced service features styling */
.gt-service-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gt-service-features li {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 12px;
    background: rgba(244, 121, 32, 0.08);
    border: 1px solid rgba(244, 121, 32, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gt-service-block:hover .gt-service-features li {
    background: rgba(244, 121, 32, 0.15);
    border-color: rgba(244, 121, 32, 0.3);
    color: var(--gt-orange);
    transform: translateY(-1px);
}

/* Alternative arrow styles (kept for flexibility) */
.gt-service-arrow.style-square {
    border-radius: 4px;
    width: 40px;
    height: 40px;
}

.gt-service-arrow.style-minimal {
    background: transparent;
    border: 2px solid rgba(244, 121, 32, 0.2);
}

.gt-service-block:hover .gt-service-arrow.style-minimal {
    background: var(--gt-orange);
    border-color: var(--gt-orange);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gt-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gt-service-block {
        padding: 25px 20px;
    }
    
    .gt-service-text {
        padding-right: 50px;
    }
    
    .gt-service-arrow {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
    
    .gt-service-arrow::after {
        font-size: 14px;
    }
    
    .gt-service-features {
        gap: 10px;
    }
    
    .gt-service-features li {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .gt-services {
        padding: 60px 0;
    }
}

/* Tablet responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .gt-services-grid {
        gap: 25px;
    }
    
    .gt-service-block {
        padding: 25px 30px;
    }
    
    .gt-service-text {
        padding-right: 55px;
    }
}

/* Focus states for accessibility */
.gt-service-block:focus {
    outline: 2px solid var(--gt-orange);
    outline-offset: 2px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gt-service-block:focus .gt-service-arrow {
    background: var(--gt-orange);
    border-color: var(--gt-orange);
    transform: rotate(15deg) scale(1.1);
}

.gt-service-block:focus .gt-service-arrow::after {
    color: var(--white);
}

/* GT WHY SECTION - Key points */
.gt-why {
    padding: 80px 0;
    background: var(--gt-navy);
    color: var(--white);
}

.gt-why h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.gt-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.gt-why-item {
    text-align: center;
}

.gt-why-item h3 {
    color: var(--gt-orange);
    font-size: 20px;
    margin-bottom: 20px;
}

.gt-why-item p {
    color: var(--white);
    opacity: 0.9;
}

/* GT CONTACT CALLOUT BOX - Large Version with Blue Background */
/* Update the contact callout background */
.gt-contact-callout-large {
    background: linear-gradient(135deg, #1e3a5f 0%, #4a5568 100%);
    border-radius: 8px;
    padding: 10px 80px;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.gt-contact-content {
    position: relative;
    z-index: 2;
}


.gt-contact-header {
    text-align: center;
}

.gt-contact-header h2 {
    font-size: px;
    color: var(--white);
    margin: 0;
    font-weight: bold;
}

.gt-contact-content {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.gt-contact-photo-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.gt-contact-placeholder-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.gt-contact-info-large {
    flex: 1;
    max-width: 300px;
}

.gt-contact-info-large h3 {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.gt-contact-info-large p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.gt-contact-actions-large {
    /*display: flex;*/
    flex-direction: column;
    gap: 15px;
}

.gt-contact-btn-large {
    background: var(--gt-orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s;
    min-width: 140px;
}

.gt-contact-btn-large:hover {
    background: var(--gt-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.gt-bio-link-large {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    transition: color 0.3s;
}

.gt-bio-link-large:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gt-contact-callout-large {
        padding: 40px 30px;
    }
    
    .gt-contact-header h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .gt-contact-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .gt-contact-info-large {
        max-width: none;
    }
    
    .gt-contact-actions-large {
        width: 100%;
        max-width: 200px;
    }
}

/* Tablet responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .gt-contact-callout-large {
        padding: 50px 60px;
    }
    
    .gt-contact-content {
        gap: 40px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gt-contact-callout {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .gt-contact-actions {
        width: 100%;
    }
}

/* GT STYLE INSIGHTS SECTION - Career Story Format */
.gt-insights {
    padding: 80px 0;
    background: var(--gt-light-gray);
}

.gt-insights-header {
    text-align: center;
    margin-bottom: 50px;
}

.gt-insights-header h2 {
    font-size: 36px;
    color: var(--text-navy);
    margin-bottom: 15px;
    font-weight: bold;
}

.gt-insights-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.gt-insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

/* Career story style cards */
.gt-insight-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gt-insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.gt-insight-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Image section - clean, no overlay */
.gt-insight-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--gt-light-gray);
    position: relative;
}

/* Simple arrow in corner */
.gt-insight-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gt-orange);
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gt-insight-card:hover .gt-insight-arrow {
    background: var(--gt-orange);
    color: var(--white);
    transform: translateX(3px);
}

/* Content section - separate from image */
.gt-insight-content {
    padding: 25px;
    background: var(--white);
}

.gt-insight-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.gt-insight-excerpt {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Optional: Add a subtle accent */
.gt-insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gt-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gt-insight-card:hover::before {
    opacity: 1;
}

.gt-insights-footer {
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gt-insights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gt-insights {
        padding: 60px 0;
    }
    
    .gt-insights-header h2 {
        font-size: 28px;
    }
    
    .gt-insight-image {
        height: 180px;
    }
    
    .gt-insight-content {
        padding: 20px;
    }
    
    .gt-insight-title {
        font-size: 18px;
    }
    
    .gt-insight-excerpt {
        font-size: 14px;
    }
    
    .gt-insight-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* GT CTA SECTION */
.gt-cta {
    padding: 80px 0;
    background: var(--gt-orange);
    text-align: center;
    color: var(--white);
}

.gt-cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.gt-cta p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.gt-cta .gt-btn {
    background: var(--white);
    color: var(--gt-orange);
    margin: 0 10px;
}

.gt-cta .gt-btn:hover {
    background: var(--gt-navy);
    color: var(--white);
}

/* GT Footer - Simple and clean */
.new-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-menu a:hover {
    color: var(--gt-orange);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Newsletter - Simple style */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    background: #444;
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.newsletter-btn {
    padding: 10px 20px;
    background: var(--gt-orange);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.newsletter-btn:hover {
    background: var(--gt-orange-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .gt-hero h1 {
        font-size: 36px;
    }
    
    .gt-hero p {
        font-size: 16px;
    }
    
    .gt-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gt-stats-grid,
    .gt-services-grid,
    .gt-why-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .gt-hero,
    .gt-intro,
    .gt-services,
    .gt-content-section,
    .gt-why,
    .gt-cta {
        padding: 60px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-btn {
        border-radius: 4px;
    }
}
/* WordPress Admin Bar Adjustments for GT-Inspired Header */

/* Default admin bar adjustment */
body.admin-bar .new-header {
    top: 32px;
}

body.admin-bar {
    padding-top: 112px; /* 32px admin bar + 80px header */
}

/* Mobile admin bar adjustment (782px and below) */
@media screen and (max-width: 782px) {
    body.admin-bar .new-header {
        top: 46px;
    }
    
    body.admin-bar {
        padding-top: 126px; /* 46px admin bar + 80px header */
    }
}

/* Ensure admin bar doesn't interfere with mobile menu */
@media screen and (max-width: 782px) {
    body.admin-bar .mobile-nav {
        top: 126px; /* 46px admin bar + 80px header */
    }
}

/* For larger screens where admin bar might be different */
@media screen and (max-width: 600px) {
    body.admin-bar .new-header {
        top: 46px;
    }
    
    body.admin-bar {
        padding-top: 126px;
    }
    
    body.admin-bar .mobile-nav {
        top: 126px;
    }
}


/* SERVICE PAGE STYLING - Grant Thornton Inspired */

/* SERVICE HERO SECTION */
.service-hero {
    background: linear-gradient(135deg, var(--gt-navy) 0%, var(--gt-navy-light) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

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

.service-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    color: var(--white);
}

.service-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
}

.service-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.service-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SERVICE OVERVIEW SECTION */
.service-overview {
    padding: 80px 0;
    background: var(--white);
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-overview-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-navy);
}

.service-overview-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* SERVICE HIGHLIGHTS */
.service-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.highlight-number {
    width: 50px;
    height: 50px;
    background: var(--gt-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 30px;
    flex-shrink: 0;
    margin-bottom: 35px;
}

.highlight-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-navy);
}

.highlight-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
}

/* STATS CARDS */
.service-overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--gt-light-gray);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--gt-orange);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--gt-orange);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* KEY SERVICES SECTION */
.key-services {
    padding: 80px 0;
    background: var(--gt-light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-navy);
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-navy);
}

.service-item p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item li {
    padding: 5px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 20px;
}

.service-item li::before {
    content: "→";
    position: absolute;
    left: 0;
   color: var (--gt-orange);
    font-weight: bold;
}

.service-content 
{
    max-width:70%;
    padding-bottom:40px;
}


/* PROCESS SECTION */
.service-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    margin-top: 60px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gt-orange), var(--gt-orange-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-navy);
}

.step-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* CASE STUDY HIGHLIGHT */
.case-study-highlight {
    padding: 80px 0;
    background: var(--gt-navy);
    color: var(--white);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.case-study-tag {
    background: var(--gt-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.case-study-text h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 32px;
}

.case-study-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.case-study-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--gt-orange);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* CHART PLACEHOLDER */
.case-study-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
}

.case-study-chart h4 {
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
    justify-content: center;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--gt-orange), var(--gt-orange-light));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--white);
}

.chart-bar:hover {
    opacity: 0.8;
}

/* CONTACT SECTION */
.service-contact {
    padding: 80px 0;
    background: var(--gt-light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-navy);
}

.contact-info p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-icon {
    color: var(--gt-orange);
    font-weight: bold;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--gt-orange);
    text-decoration: none;
}

/* CONTACT FORM */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gt-border);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gt-orange);
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* RELATED SERVICES */
.related-services {
    padding: 80px 0;
    background: var(--white);
}

.related-services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--text-navy);
}

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

.related-service-card {
    background: var(--white);
    border: 1px solid var(--gt-border);
    border-radius: 8px;
    padding: 30px 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.related-service-card:hover {
    border-color: var(--gt-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.related-service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-navy);
}

.related-service-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: var(--gt-orange);
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.related-service-card:hover .service-arrow {
    transform: translateX(5px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero-title {
        font-size: 32px;
    }
    
    .service-hero-subtitle {
        font-size: 16px;
    }
    
    .service-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .service-overview-grid,
    .contact-grid,
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .related-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-overview-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-card {
        flex: 1;
        margin: 0 5px;
    }
    
    .case-study-metrics {
        justify-content: space-between;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}