/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #2d2d2d;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-phone-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
    padding: 6px 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.top-phone-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.top-phone-link i {
    font-size: 13px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.website-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.website-link:hover {
    color: #60a5fa;
}

.website-link i {
    font-size: 16px;
}

.address {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.address i {
    font-size: 16px;
}

.office-hours {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

/* Mobile: Stack top bar vertically */
@media (max-width: 968px) {
    .top-bar {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .top-bar-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .top-bar-left,
    .top-bar-center,
    .top-bar-right {
        justify-content: center;
        width: 100%;
    }
    
    .website-link,
    .address,
    .top-phone-link {
        font-size: 12px;
    }
    
    .top-phone-link {
        padding: 5px 12px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .website-link,
    .address,
    .office-hours {
        font-size: 11px;
    }
    
    .website-link i,
    .address i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 7px 0;
        font-size: 10px;
    }
    
    .website-link,
    .address,
    .office-hours {
        font-size: 10px;
    }
    
    .website-link i,
    .address i {
        font-size: 12px;
    }
    
    /* Hide address on very small screens */
    .address {
        display: none;
    }
}

.navbar {
    padding: 15px 0;
    background: #1a1a1a;
    border-bottom: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.nav-office-hours {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 0 20px;
}

.nav-office-hours span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: transparent;
    padding: 5px 10px 5px 0;
    border-radius: 4px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
    background: transparent;
    border: none;
    outline: none;
}

.logo a:hover {
    opacity: 0.9;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    background: transparent !important;
    border: none;
    outline: none;
    object-fit: contain;
    max-width: 100%;
    vertical-align: middle;
}

/* Legacy logo styles - kept for backward compatibility */
.logo-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon .logo-acronym {
    font-size: 26px;
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.logo-icon .logo-line {
    width: 100%;
    height: 2.5px;
    background: #60a5fa;
    margin-top: 3px;
    border-radius: 2px;
}

.logo-text {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-left: 0;
}

.logo-text .logo-main {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: inline;
}

.logo-text .logo-main .logo-evolve {
    display: inline;
    color: #ffffff;
    font-weight: 400;
}

.logo-text .logo-main .logo-professional {
    display: inline;
    color: #ffffff;
    font-weight: 400;
}

.logo-text .logo-main .logo-alliance {
    display: inline;
    color: #ffffff;
    font-weight: 400;
}

/* Responsive Logo - Mobile Optimized */
@media (max-width: 968px) {
    .logo-image {
        height: 45px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo a {
        gap: 4px;
    }
    
    .logo-icon .logo-acronym {
        font-size: 24px;
    }
    
    .logo-icon .logo-line {
        height: 2px;
        margin-top: 2px;
    }
    
    .logo-text {
        margin-left: 0;
    }
    
    .logo-text .logo-main {
        font-size: 12px;
    }
    
    .logo-text .logo-main .logo-professional,
    .logo-text .logo-main .logo-alliance {
        margin-left: 3px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .logo {
        gap: 6px;
    }
    
    .logo a {
        gap: 3px;
    }
    
    .logo-icon .logo-acronym {
        font-size: 20px;
    }
    
    .logo-icon .logo-line {
        height: 2px;
        margin-top: 2px;
    }
    
    .logo-text {
        margin-left: 0;
    }
    
    .logo-text .logo-main {
        font-size: 10px;
        line-height: 1;
    }
    
    .logo-text .logo-main .logo-professional,
    .logo-text .logo-main .logo-alliance {
        margin-left: 3px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .logo {
        gap: 5px;
    }
    
    .logo a {
        gap: 5px;
    }
    
    .logo-icon .logo-acronym {
        font-size: 18px;
    }
    
    .logo-icon .logo-line {
        height: 1.5px;
        margin-top: 2px;
    }
    
    .logo-text {
        margin-left: 5px;
    }
    
    .logo-text .logo-main {
        font-size: 9px;
        line-height: 1;
    }
    
    .logo-text .logo-main .logo-professional,
    .logo-text .logo-main .logo-alliance {
        margin-left: 2px;
    }
}

/* Ensure text stays inline on all screen sizes */
@media (max-width: 360px) {
    .logo-text .logo-main {
        font-size: 8px;
    }
    
    .logo-icon .logo-acronym {
        font-size: 16px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu > li:not(:last-child) {
    margin-right: 2px;
}

.nav-menu > li:last-child {
    margin-left: auto;
    margin-right: -15px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

.nav-menu a.active {
    color: #60a5fa;
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #60a5fa;
}

.btn-signin {
    background: transparent;
    color: #fff !important;
    padding: 10px 24px;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-signin:hover {
    background: #fff;
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-register {
    background: #00d4ff;
    color: #1a1a1a !important;
    padding: 10px 24px;
    border: 2px solid #00d4ff;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-register:hover {
    background: #00e5ff;
    border-color: #00e5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    list-style: none;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    font-size: 10px;
    margin-left: 10px;
    color: #9ca3af !important;
    transition: all 0.3s ease;
}

.dropdown-submenu > a:hover::after {
    color: #60a5fa !important;
    transform: translateX(3px);
}

.dropdown-submenu-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #1f2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    list-style: none;
    min-width: 250px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-submenu:hover .dropdown-submenu-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure dropdown stays visible on hover for desktop */
@media (min-width: 969px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .nav-office-hours {
        display: flex !important;
    }
    
    .nav-auth-buttons {
        display: flex !important;
    }
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a,
.dropdown-submenu-menu li a {
    padding: 12px 20px;
    display: block;
    color: #e5e7eb !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
    background: transparent;
}

.dropdown-menu li a:hover,
.dropdown-submenu-menu li a:hover {
    background: linear-gradient(to right, rgba(96, 165, 250, 0.15), transparent) !important;
    color: #60a5fa !important;
    border-left-color: #60a5fa;
    padding-left: 17px;
}

.dropdown-menu a.active {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.12), transparent);
    color: #2563eb;
    font-weight: 600;
    border-left-color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
    background: rgba(37, 99, 235, 0.1);
}

.hamburger:active {
    background: rgba(37, 99, 235, 0.2);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #60a5fa;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #60a5fa;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title .highlight {
    background: rgba(37, 99, 235, 0.3);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    margin: 5px 5px 5px 0;
    animation: fadeIn 1s ease-out 0.5s both;
    position: relative;
}

/* Typing Text Animation */
.typing-text {
    display: inline-block;
    min-width: 200px;
}

.typing-text::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--primary-color);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.btn-link:hover {
    gap: 10px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* ITIN EIN Section */
.itin-ein-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(240, 249, 255, 0.75) 100%),
                url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.itin-ein-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.itin-ein-section .container {
    position: relative;
    z-index: 2;
}

.itin-ein-section .section-title {
    color: var(--text-dark);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
}

.itin-ein-section .section-description {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

/* Animation for feature cards on scroll */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 255, 0.9) 100%);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.95) 100%);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Start Business Section */
.start-business-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.start-business-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.business-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.business-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.business-image:hover img {
    transform: scale(1.05);
}

.business-text {
    padding: 20px 0;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.business-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.business-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.business-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.business-text .btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.business-text .btn::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.business-text .btn:hover::after {
    transform: translateX(5px);
}

/* What is Section */
.what-is-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.what-is-main-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #2d3748;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight-blue {
    color: #60a5fa;
}

/* What is Item Layout */
.what-is-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.what-is-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.what-is-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.what-is-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.what-is-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.what-is-item:hover .what-is-image img {
    transform: scale(1.05);
}

.what-is-content {
    padding: 10px;
}

.what-is-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.what-is-icon i {
    font-size: 28px;
    color: #ffffff;
}

.what-is-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.what-is-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.learn-more-link {
    display: inline-block;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 2px;
}

.learn-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s;
}

.learn-more-link:hover {
    color: #3b82f6;
}

.learn-more-link:hover::after {
    width: 100%;
}

/* Our Services Section */
.our-services-section {
    background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 80px 0;
}

.our-services-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 30px;
    font-weight: 700;
}

.btn-dark {
    background: #1e3a8a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-dark::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.btn-dark:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0;
    border-bottom: 3px solid rgba(30, 58, 138, 0.2);
}

.service-tab {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 20px 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    margin-bottom: -3px;
}

.service-tab:hover {
    background: rgba(255, 255, 255, 0.3);
}

.service-tab.active {
    border-bottom-color: #1e3a8a;
}

.tab-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.service-tab.active .tab-number {
    color: #1e3a8a;
}

.tab-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.4;
    transition: all 0.3s;
}

.service-tab.active .tab-title {
    color: #1e3a8a;
}

/* Service Content Area */
.service-content-area {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin-top: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.service-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    animation: fadeIn 0.5s ease-in;
}

.service-content.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-detail-text p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Accounting Section */
.accounting-section {
    background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 80px 0;
}

.accounting-main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 50px;
    line-height: 1.3;
}

.accounting-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.accounting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.accounting-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.accounting-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.accounting-features {
    margin: 30px 0;
}

.accounting-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    background: #60a5fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box i {
    font-size: 20px;
    color: #ffffff;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e3a8a;
}

.feature-text p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.btn-cyan {
    background: #06b6d4;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-cyan::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.btn-cyan:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.accounting-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accounting-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: gradient-shift 8s ease infinite;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.image-placeholder i {
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced image placeholder variants - Matching filingexpress.com style */
.image-placeholder.chart {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.image-placeholder.building {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.image-placeholder.trophy {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
}

.image-placeholder.accounting {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
}

/* Service card images matching filingexpress.com */
.service-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.service-card-image.businessman-briefcase {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
}

.service-card-image.immigration {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
}

.service-card-image.sales {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
}

.service-card-image.business-people {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
}

.service-card-image.teenagers {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #155e75 100%);
    background-image: 
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #155e75 100%);
}

.service-card-image.home {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
}

/* Add image icons to service cards */
.service-card-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.service-card-image::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    z-index: 1;
}

/* More Services Section */
.more-services-section {
    background: #ffffff;
    padding: 0;
}

.more-services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.more-services-image {
    position: relative;
    overflow: hidden;
}

.more-services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.more-services-content {
    background: #1e3a5f;
    padding: 80px 60px;
    color: #ffffff;
}

.more-services-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* Accordion Styles */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    color: #ffffff;
    text-align: left;
    transition: all 0.3s;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    min-width: 60px;
}

.accordion-title {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.accordion-icon {
    font-size: 16px;
    color: #ffffff;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0 0 80px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 0 25px 80px;
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Use Cases Section */
.use-cases-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.use-cases-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.3;
}

.highlight-cyan {
    color: #06b6d4;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.use-case-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    cursor: pointer;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.use-case-icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1);
}

.use-case-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.pricing-note {
    text-align: left;
    color: #6b7280;
    font-size: 15px;
    margin: 40px 0;
    max-width: 900px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(30, 64, 175, 0.95) 100%),
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonials-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    max-width: 700px;
    margin: 20px auto 50px;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.testimonials-description strong {
    color: #60a5fa;
    font-weight: 600;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    margin-top: 50px;
    padding: 0 60px;
    width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(6, 182, 212, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(255, 255, 255, 1);
}

/* Slider Navigation */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(37, 99, 235, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Slider */
@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
    
    .testimonials-slider-wrapper {
        padding: 0 80px;
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 0 30px;
        margin-top: 40px;
    }
    
    .testimonials-slider {
        padding: 0;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 0px);
        padding: 25px 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-controls {
        margin-top: 30px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-wrapper {
        padding: 0 10px;
        margin-top: 30px;
        overflow: hidden;
    }
    
    .testimonials-slider {
        padding: 0;
        overflow: hidden;
    }
    
    .testimonials-track {
        gap: 15px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 0px);
        padding: 18px 12px;
        border-radius: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-card::before {
        font-size: 40px;
        top: 5px;
        left: 8px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
        gap: 6px;
    }
    
    .slider-dot.active {
        width: 20px;
    }
    
    .slider-controls {
        margin-top: 20px;
        gap: 8px;
        padding: 0 5px;
    }
    
    .testimonial-name {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .testimonial-role {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .stars {
        font-size: 12px;
        margin-bottom: 8px;
        gap: 2px;
    }
    
    .testimonial-text {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .testimonial-response {
        font-size: 10px;
        margin-top: 8px;
        padding-top: 8px;
        line-height: 1.4;
    }
    
    .testimonials-description {
        font-size: 13px;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

@media (max-width: 360px) {
    .testimonials-slider-wrapper {
        padding: 0 8px;
        margin-top: 25px;
    }
    
    .testimonials-track {
        gap: 12px;
    }
    
    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .testimonial-card {
        padding: 15px 10px;
        min-width: calc(100% - 0px);
    }
    
    .testimonial-name {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 11px;
    }
    
    .testimonial-response {
        font-size: 9px;
    }
    
    .slider-controls {
        gap: 6px;
        padding: 0;
    }
}

/* Responsive Hero Images */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .hero-image {
        order: -1;
        max-height: 300px;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-text h1 {
        font-size: 32px !important;
    }
    
    .hero-text p {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-height: 250px;
        border-radius: 12px;
    }
    
    .hero-text h1 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-text p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
    
    .trust-badges,
    .badge-item {
        flex-direction: column;
        gap: 12px !important;
        width: 100%;
    }
}

/* Responsive Image Placeholders */
@media (max-width: 768px) {
    .image-placeholder {
        height: 200px !important;
        font-size: 40px !important;
    }
    
    .service-card-image {
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .image-placeholder {
        height: 150px !important;
        font-size: 32px !important;
    }
    
    .service-card-image {
        height: 120px !important;
    }
}

/* Responsive Container and Sections */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .testimonials-section {
        overflow-x: hidden;
        width: 100%;
        background-attachment: scroll;
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .testimonials-section {
        overflow-x: hidden;
        width: 100%;
        padding: 40px 0;
    }
    
    /* Responsive Grids */
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Responsive Cards */
    .service-card,
    .feature-card,
    .card {
        padding: 20px 15px !important;
    }
    
    /* Responsive Buttons */
    .btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .btn-large {
        padding: 14px 24px !important;
        font-size: 16px !important;
    }
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #06b6d4;
    margin-bottom: 15px;
    font-weight: 600;
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.testimonial-response {
    color: #06b6d4;
    font-size: 13px;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    font-weight: 500;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonials-description {
        font-size: 15px;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-images {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-image-main {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-image-main img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-image-secondary {
    position: relative;
    z-index: 1;
    flex: 0.7;
    margin-top: 40px;
}

.cta-image-secondary img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-shape {
    position: absolute;
    border-radius: 12px;
    z-index: -1;
}

.cta-shape-1 {
    width: 100%;
    height: 100%;
    background: #06b6d4;
    top: -15px;
    left: -15px;
}

.cta-shape-2 {
    width: 100%;
    height: 100%;
    background: #06b6d4;
    bottom: -15px;
    right: -15px;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-cta {
    background: #06b6d4;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-cta::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.btn-cta:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}

.cta-badge i {
    color: #06b6d4;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #0d2847;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-logo .logo-acronym {
    font-size: 24px;
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
    letter-spacing: -0.5px;
}

.footer-logo .logo-line {
    width: 100%;
    height: 2px;
    background: #60a5fa;
    margin-top: 3px;
    border-radius: 2px;
}

.footer-logo .logo-text {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-left: 8px;
}

.footer-logo .logo-main {
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.footer-logo .logo-evolve {
    display: inline;
    color: #ffffff;
    font-weight: 400;
}

.footer-logo .logo-professional {
    display: inline;
    color: #ffffff;
    font-weight: 400;
    margin-left: 3px;
}

.footer-logo .logo-alliance {
    display: inline;
    color: #ffffff;
    font-weight: 400;
    margin-left: 3px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.footer-contact:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p:before {
    content: '•';
    color: #00d4ff;
    font-size: 16px;
    font-weight: bold;
}

.footer-contact a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #06b6d4;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
    font-size: 16px;
}

.social-links a:hover {
    background: #06b6d4;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 14px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #06b6d4;
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    padding: 14px 24px;
    background: #06b6d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-subscribe:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Footer Badges */
.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-item i {
    font-size: 24px;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.badge-item:hover i {
    color: #00e5ff;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
}

.footer-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    margin: 18px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #06b6d4;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2d2d2d;
        width: 100%;
        text-align: left;
        transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        padding: 15px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        font-size: 16px;
        color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(96, 165, 250, 0.1);
        color: #60a5fa;
        padding-left: 25px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }
    
    .nav-office-hours {
        display: none;
    }
    
    .nav-auth-buttons {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #1a1a1a;
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
        border-top: 2px solid rgba(0, 212, 255, 0.3);
        z-index: 1001;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .nav-auth-buttons.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-auth-buttons .btn-signin,
    .nav-auth-buttons .btn-register {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 0;
        padding: 0;
        display: none;
        border: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-submenu-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-left: 0;
        margin-top: 10px;
        padding: 0;
        display: none;
        border: none;
    }

    .dropdown-submenu-menu.show {
        display: block;
    }

    .dropdown-menu li a,
    .dropdown-submenu-menu li a {
        color: #e5e7eb !important;
        background: transparent !important;
        padding: 12px 20px;
    }

    .dropdown-menu li a:hover,
    .dropdown-submenu-menu li a:hover {
        color: #60a5fa !important;
        background: rgba(96, 165, 250, 0.1) !important;
        padding-left: 25px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .accounting-content {
        grid-template-columns: 1fr;
    }
    
    .accounting-main-title {
        font-size: 32px;
    }
    
    .accounting-card {
        padding: 35px;
    }
    
    .accounting-subtitle {
        font-size: 24px;
    }
    
    .accounting-description {
        font-size: 14px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    .business-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .business-subtitle {
        font-size: 24px;
    }
    
    .business-description {
        font-size: 15px;
    }
    
    .what-is-item,
    .what-is-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
        padding: 30px;
    }
    
    .what-is-main-title {
        font-size: 28px;
    }
    
    .what-is-content h3 {
        font-size: 22px;
    }
    
    .what-is-content p {
        font-size: 14px;
    }
    
    .what-is-icon {
        width: 55px;
        height: 55px;
    }
    
    .what-is-icon i {
        font-size: 24px;
    }
    
    .our-services-section .section-title {
        font-size: 32px;
    }
    
    .service-tabs {
        flex-wrap: wrap;
    }
    
    .service-tab {
        flex: 1 1 calc(50% - 5px);
        min-width: 150px;
    }
    
    .tab-number {
        font-size: 24px;
    }
    
    .tab-title {
        font-size: 11px;
    }
    
    .service-content-area {
        padding: 30px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-text h3 {
        font-size: 26px;
    }

    .features-grid,
    .services-grid,
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .more-services-container {
        grid-template-columns: 1fr;
    }
    
    .more-services-image {
        min-height: 400px;
    }
    
    .more-services-content {
        padding: 50px 30px;
    }
    
    .more-services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .accordion-number {
        font-size: 24px;
        min-width: 50px;
    }
    
    .accordion-title {
        font-size: 18px;
    }
    
    .accordion-content {
        padding: 0 0 0 70px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 0 20px 70px;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .use-cases-title {
        font-size: 32px;
    }
    
    .use-case-card {
        padding: 35px 25px;
    }
    
    .use-case-card h3 {
        font-size: 16px;
    }
    
    .use-case-icon {
        font-size: 40px;
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-section {
        margin-bottom: 0;
    }
    
    .footer-badges {
        gap: 30px;
        flex-wrap: wrap;
        padding: 30px 0;
    }
    
    .badge-item {
        font-size: 13px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .btn-signin {
        padding: 10px 16px;
        text-align: center;
        justify-content: center;
    }
    
    .btn-signin,
    .btn-register {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Tablet and Mobile - Disable parallax for better performance */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
    
    .itin-ein-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        background-attachment: scroll;
        background-position: center center;
        min-height: 500px;
        text-align: left;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title .highlight {
        display: inline-block;
        margin: 5px 5px 5px 0;
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
    
    .itin-ein-section {
        background-attachment: scroll;
        background-position: center center;
    }

    .section-title {
        font-size: 24px;
    }

    section {
        padding: 50px 0;
    }
    
    .start-business-section {
        padding: 50px 0;
    }
    
    .business-content {
        gap: 30px;
    }
    
    .business-subtitle {
        font-size: 22px;
    }
    
    .business-description {
        font-size: 14px;
    }
    
    .what-is-section {
        padding: 50px 0;
    }
    
    .what-is-main-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .what-is-item {
        margin-bottom: 35px;
        padding: 25px;
    }
    
    .what-is-content h3 {
        font-size: 20px;
    }
    
    .what-is-content p {
        font-size: 14px;
    }
    
    .our-services-section {
        padding: 50px 0;
    }
    
    .our-services-section .section-title {
        font-size: 28px;
    }
    
    .service-content-area {
        padding: 25px;
    }
    
    .service-detail-text h3 {
        font-size: 24px;
    }
    
    .service-detail-text p {
        font-size: 15px;
    }
    
    .accounting-section {
        padding: 50px 0;
    }
    
    .accounting-main-title {
        font-size: 28px;
    }
    
    .accounting-card {
        padding: 30px;
    }
    
    .accounting-subtitle {
        font-size: 22px;
    }
    
    .more-services-image {
        min-height: 350px;
    }
    
    .more-services-content {
        padding: 40px 25px;
    }
    
    .more-services-title {
        font-size: 28px;
    }
    
    .accordion-header {
        padding: 20px 0;
    }
    
    .accordion-number {
        font-size: 22px;
    }
    
    .accordion-title {
        font-size: 16px;
    }
    
    .use-cases-section {
        padding: 50px 0;
    }
    
    .use-cases-title {
        font-size: 28px;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .use-case-card {
        padding: 30px 20px;
    }
    
    .use-case-card h3 {
        font-size: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .footer-badges {
        gap: 25px;
    }
    
    .badge-item {
        font-size: 13px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-images {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 36px;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-hero-title {
        font-size: 36px;
    }
    
    .page-hero-intro {
        font-size: 15px;
    }
    
    .page-hero-logo {
        width: 100px;
        height: 100px;
        bottom: -25px;
        left: -25px;
    }
    
    .page-hero-logo .logo-acronym {
        font-size: 28px;
    }
    
    .page-hero-logo .logo-line {
        width: 50px;
    }

    .cta-subtitle {
        font-size: 24px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .logo-text .logo-main {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 450px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-title .highlight {
        font-size: 32px;
        padding: 3px 10px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
    
    .itin-ein-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .section-title {
        font-size: 20px;
    }
    
    .start-business-section {
        padding: 40px 0;
    }
    
    .business-content {
        gap: 25px;
    }
    
    .business-subtitle {
        font-size: 20px;
    }
    
    .business-description {
        font-size: 13px;
    }
    
    .what-is-section {
        padding: 40px 0;
    }
    
    .what-is-main-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .what-is-item {
        gap: 20px;
        margin-bottom: 25px;
        padding: 20px;
    }
    
    .what-is-content h3 {
        font-size: 18px;
    }
    
    .what-is-content p {
        font-size: 13px;
    }
    
    .what-is-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .what-is-icon i {
        font-size: 22px;
    }
    
    .our-services-section {
        padding: 40px 0;
    }
    
    .our-services-section .section-title {
        font-size: 24px;
    }
    
    .service-tabs {
        gap: 5px;
    }
    
    .service-tab {
        padding: 15px 5px;
    }
    
    .tab-number {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .tab-title {
        font-size: 10px;
    }
    
    .service-content-area {
        padding: 20px;
    }
    
    .service-detail-text h3 {
        font-size: 20px;
    }
    
    .service-detail-text p {
        font-size: 14px;
    }
    
    .accounting-section {
        padding: 40px 0;
    }
    
    .accounting-main-title {
        font-size: 24px;
    }
    
    .accounting-card {
        padding: 20px;
    }
    
    .accounting-subtitle {
        font-size: 20px;
    }
    
    .accounting-description {
        font-size: 13px;
    }
    
    .feature-icon-box {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon-box i {
        font-size: 18px;
    }
    
    .feature-text h4 {
        font-size: 15px;
    }
    
    .feature-text p {
        font-size: 12px;
    }
    
    .more-services-image {
        min-height: 300px;
    }
    
    .more-services-content {
        padding: 30px 20px;
    }
    
    .more-services-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .accordion-header {
        padding: 18px 0;
        gap: 15px;
    }
    
    .accordion-number {
        font-size: 20px;
        min-width: 40px;
    }
    
    .accordion-title {
        font-size: 14px;
    }
    
    .accordion-content {
        padding: 0 0 0 55px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 0 15px 55px;
    }
    
    .accordion-content p {
        font-size: 13px;
    }
    
    .use-cases-section {
        padding: 40px 0;
    }
    
    .use-cases-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .use-case-card {
        padding: 25px 20px;
    }
    
    .use-case-card h3 {
        font-size: 14px;
    }
    
    .use-case-icon {
        font-size: 36px;
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .pricing-note {
        font-size: 14px;
        margin: 30px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-contact {
        padding: 20px;
        border-radius: 12px;
    }
    
    .footer-contact p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .footer-contact p:before {
        font-size: 14px;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
    }
    
    .badge-item {
        font-size: 12px;
    }
    
    .badge-item i {
        font-size: 24px;
    }
    
    .footer-disclaimer {
        font-size: 10px;
        line-height: 1.6;
    }
    
    .footer-links {
        font-size: 11px;
    }
    
    .newsletter-form input {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .btn-subscribe {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-images {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-image-secondary {
        margin-top: 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cta-badge {
        font-size: 12px;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero-wrapper {
        gap: 30px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-intro {
        font-size: 14px;
    }
    
    .page-hero-logo {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -20px;
        border: 3px solid #ffffff;
    }
    
    .page-hero-logo .logo-acronym {
        font-size: 22px;
    }
    
    .page-hero-logo .logo-line {
        width: 40px;
        height: 2px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .logo-text .logo-main {
        font-size: 14px;
    }

    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    /* Contact info already handled above in mobile section */

    .footer-contact-item {
        padding: 12px;
    }

    .footer-contact-item h4 {
        font-size: 14px;
    }

    .footer-contact-item p {
        font-size: 12px;
    }

    .nav-menu {
        top: 60px;
    }
}

/* Page Hero Section */
.page-hero {
    background: #f8f9fa;
    padding: 80px 0;
}

.page-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    padding-right: 20px;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-hero-title .highlight-cyan {
    color: #06b6d4;
}

.company-name-cyan {
    color: #06b6d4;
    font-weight: 600;
}

.page-hero-intro {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.page-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.page-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.page-hero-logo {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    border: 5px solid #ffffff;
}

.page-hero-logo .logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero-logo .logo-acronym {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.page-hero-logo .logo-line {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin-top: 5px;
    border-radius: 2px;
}

/* Advanced About Us Section Styles */
.about-us-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.92) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: gradient-shift 15s ease infinite;
}

.about-us-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 101px
        );
    pointer-events: none;
}

.about-us-container {
    position: relative;
    z-index: 1;
}

.about-us-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-us-intro {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto 40px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-us-title {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
    letter-spacing: -0.5px;
}

.about-us-subtitle {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
}

.about-us-description {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.about-us-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(6, 182, 212, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover::after {
    width: 300px;
    height: 300px;
}

.stat-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 24px rgba(6, 182, 212, 0.6));
}

.stat-value {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.stat-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.stat-certifications span {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 12px rgba(6, 182, 212, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-certifications span:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(6, 182, 212, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.about-us-closing {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: 
        linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%),
        rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-us-closing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.about-us-closing.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-us-closing p {
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive About Us Section */
@media (max-width: 968px) {
    .about-us-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .about-us-title {
        font-size: 40px;
    }

    .about-us-subtitle {
        font-size: 28px;
    }

    .about-us-intro {
        font-size: 18px;
        padding: 25px 30px;
    }

    .about-us-stats {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    .stat-card {
        padding: 35px 25px;
    }

    .stat-icon {
        font-size: 50px;
    }

    .stat-value {
        font-size: 38px;
    }

    .about-us-closing {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 0;
    }

    .about-us-title {
        font-size: 32px;
    }

    .about-us-subtitle {
        font-size: 24px;
    }

    .about-us-intro {
        font-size: 17px;
        padding: 25px;
    }

    .about-us-description {
        font-size: 17px;
    }

    .about-us-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-icon {
        font-size: 44px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .about-us-closing {
        padding: 35px 25px;
    }

    .about-us-closing p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 40px 0;
    }

    .about-us-title {
        font-size: 26px;
        letter-spacing: -0.3px;
    }

    .about-us-subtitle {
        font-size: 20px;
    }

    .about-us-intro {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 20px;
    }

    .about-us-description {
        font-size: 15px;
    }

    .about-us-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .stat-certifications span {
        padding: 6px 12px;
        font-size: 11px;
    }

    .about-us-closing {
        padding: 30px 20px;
    }

    .about-us-closing p {
        font-size: 15px;
    }

    .image-placeholder {
        height: 250px;
        font-size: 80px;
    }
}

/* Our Origin Section Styles */
.our-origin-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.our-origin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.our-origin-section .container {
    position: relative;
    z-index: 2;
}

.our-origin-section .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.our-origin-section .section-title .highlight-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.our-origin-section .content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.our-origin-section .origin-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.our-origin-section .origin-content p:last-child {
    margin-bottom: 0;
}

.our-origin-section .origin-image {
    display: none;
}

/* Responsive Our Origin Section */
@media (max-width: 968px) {
    .our-origin-section {
        padding: 70px 0;
        background-attachment: scroll;
    }

    .our-origin-section .section-title {
        font-size: 38px;
    }

    .our-origin-section .origin-content p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .our-origin-section {
        padding: 60px 0;
    }

    .our-origin-section .section-title {
        font-size: 32px;
    }

    .our-origin-section .origin-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .our-origin-section {
        padding: 50px 0;
    }

    .our-origin-section .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .our-origin-section .origin-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Our Services Company Section Styles */
.our-services-company-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.our-services-company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.our-services-company-section .container {
    position: relative;
    z-index: 2;
}

.our-services-company-section .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.our-services-company-section .section-description {
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-overview-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.service-overview-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.service-overview-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.service-overview-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-overview-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Income Taxes Section Styles */
.income-taxes-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.95) 100%),
        url('https://images.unsplash.com/photo-1554224311-beee460c201f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.income-taxes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.income-taxes-section .container {
    position: relative;
    z-index: 2;
}

.income-taxes-section .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.income-taxes-section .section-description {
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 60px;
}

.tax-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tax-type-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.tax-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tax-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(245, 158, 11, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(245, 158, 11, 0.4);
}

.tax-type-card:hover::before {
    transform: scaleX(1);
}

.tax-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    transition: all 0.4s ease;
}

.tax-type-card:hover .tax-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
}

.tax-type-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tax-type-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.tax-note {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
}

.tax-note p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Success & Credibility Section Styles */
.success-credibility-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.success-credibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.success-credibility-section .container {
    position: relative;
    z-index: 2;
}

.success-credibility-section .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.success-text {
    text-align: center;
}

.large-text {
    font-size: 20px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.15);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-image {
    display: none;
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(6, 182, 212, 0.95) 100%),
        url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: gradient-shift 15s ease infinite;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta-content > p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-badge i {
    font-size: 20px;
    color: #f59e0b;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles for All Sections */
@media (max-width: 968px) {
    .our-services-company-section,
    .income-taxes-section,
    .success-credibility-section,
    .cta-section {
        padding: 70px 0;
    }

    .income-taxes-section,
    .cta-section {
        background-attachment: scroll;
    }

    .our-services-company-section .section-title,
    .income-taxes-section .section-title,
    .success-credibility-section .section-title {
        font-size: 40px;
    }

    .cta-title {
        font-size: 42px;
    }

    .cta-subtitle {
        font-size: 24px;
    }

    .services-overview-grid,
    .tax-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .success-stats {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .our-services-company-section,
    .income-taxes-section,
    .success-credibility-section,
    .cta-section {
        padding: 60px 0;
    }

    .our-services-company-section .section-title,
    .income-taxes-section .section-title,
    .success-credibility-section .section-title {
        font-size: 34px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 22px;
    }

    .section-description,
    .large-text {
        font-size: 17px;
    }

    .services-overview-grid,
    .tax-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-overview-card,
    .tax-type-card {
        padding: 30px 25px;
    }

    .success-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 40px;
    }

    .tax-note {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .our-services-company-section,
    .income-taxes-section,
    .success-credibility-section,
    .cta-section {
        padding: 50px 0;
    }

    .our-services-company-section .section-title,
    .income-taxes-section .section-title,
    .success-credibility-section .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 20px;
    }

    .section-description,
    .large-text,
    .cta-content > p {
        font-size: 15px;
    }

    .service-overview-card,
    .tax-type-card,
    .stat-item {
        padding: 25px 20px;
    }

    .service-icon,
    .tax-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .service-overview-card h3,
    .tax-type-card h3 {
        font-size: 18px;
    }

    .service-overview-card p,
    .tax-type-card p {
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .tax-note {
        padding: 25px 20px;
    }

    .tax-note p {
        font-size: 15px;
    }

    .cta-badge {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 15px 40px;
        font-size: 16px;
    }
}

/* Additional responsive enhancements for image placeholders */
@media (max-width: 968px) {
    .image-placeholder {
        height: 350px;
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .image-placeholder {
        height: 300px;
        font-size: 80px;
    }
}

/* Enhanced visual elements */
.visual-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.visual-accent-1 {
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.visual-accent-2 {
    bottom: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Decorative elements */
.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px auto;
    border-radius: 2px;
}

.decorative-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced section backgrounds */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

section > .container {
    position: relative;
    z-index: 1;
}

/* Loading states for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Enhanced card shadows and borders */
.card-enhanced {
    position: relative;
    overflow: hidden;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card-enhanced:hover::before {
    transform: scaleX(1);
}

/* Global responsive improvements */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Enhanced focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .top-bar,
    .hamburger,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --text-dark: #000000;
        --text-light: #333333;
        --bg-white: #ffffff;
        --bg-light: #f5f5f5;
    }
    
    .btn-primary {
        border: 2px solid #000;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Can be enabled if dark mode is desired */
}

/* Form Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: #1f2937;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1f2937;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Button States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}

/* Smooth Page Transitions */
.page-transition {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Focus States for Better Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Optimizations */
@media print {
    .back-to-top,
    .hamburger,
    .contact-modal,
    .tooltip {
        display: none !important;
    }
}

/* Universal Page Enhancements */
body {
    animation: pageTransition 0.3s ease-in;
}

@keyframes pageTransition {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Link Styles */
a {
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: none;
}

/* Smooth Transitions for All Interactive Elements */
button,
.btn,
input,
select,
textarea {
    transition: all 0.2s ease;
}

/* Loading States */
.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.success-message {
    color: #10b981;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Enhanced Card Hover Effects */
.card,
.feature-card,
.service-card,
.service-detailed-card,
.more-service-card,
.use-case-card,
.testimonial-card {
    will-change: transform;
}

/* Optimize Animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .back-to-top {
        transition: none !important;
    }
}

/* Enhanced Scrollbar (Webkit browsers) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: #ffffff;
}

::-moz-selection {
    background: var(--primary-color);
    color: #ffffff;
}

/* Contact Modal Popup Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #0b1220 0%, #1a2332 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    position: relative;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-contact-info {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.modal-contact-info p {
    margin-bottom: 5px;
}

.modal-contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.modal-contact-info a:hover {
    color: var(--accent-color);
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.modal-close:active {
    transform: translateY(0);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #1a2332;
    color: #ffffff;
}

.btn-submit {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #ffffff;
    color: #0b1220;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-close {
        padding: 8px 16px;
        font-size: 11px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 14px;
        font-size: 15px;
    }

    .btn-submit {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-detailed-card > *:not(.service-number):not(.service-card-image) {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 15px;
        border-radius: 8px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .modal-contact-info {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .modal-contact-info a {
        font-size: 15px;
    }

    .modal-close {
        padding: 6px 12px;
        font-size: 10px;
        top: -5px;
        right: -5px;
    }

    .contact-form {
        gap: 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .service-card-image {
        height: 150px;
    }
    
    .service-card-image::after {
        font-size: 30px;
    }
    
    .service-card-image::before {
        width: 60px;
        height: 60px;
    }
    
    .service-detailed-card > *:not(.service-number):not(.service-card-image) {
        padding: 20px;
    }
    
    .service-number {
        font-size: 48px;
        top: 15px;
        right: 15px;
    }
}


/* Tax Planning Intro Section */
.tax-planning-intro {
    padding: 80px 0;
    background: #ffffff;
}

.tax-planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tax-planning-text {
    display: flex;
    flex-direction: column;
}

.intro-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.btn-book-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
    margin-top: 12px;
}

.btn-book-call:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-call i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-call:hover i {
    transform: translateX(4px);
}

.tax-planning-images {
    position: relative;
}

.planning-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.planning-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.planning-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 200px;
}

.planning-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 200px;
}

.planning-img-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
}

.planning-img-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 200px;
}

@media (max-width: 968px) {
    .tax-planning-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-paragraph {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .tax-planning-intro {
        padding: 60px 0;
    }

    .intro-paragraph {
        font-size: 14px;
    }

    .planning-image-grid {
        grid-template-columns: 1fr;
    }

    .planning-img-1,
    .planning-img-2,
    .planning-img-3,
    .planning-img-4 {
        grid-column: 1 / 2;
        height: auto;
    }

    .planning-img-1 {
        grid-row: 1 / 2;
    }

    .planning-img-2 {
        grid-row: 2 / 3;
    }

    .planning-img-3 {
        grid-row: 3 / 4;
    }

    .planning-img-4 {
        grid-row: 4 / 5;
    }
}

/* Tax Planning CTA Section */
.tax-planning-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #3d5a6b 0%, #2c4557 100%);
}

.cta-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.cta-text-content {
    color: white;
}

.cta-main-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.highlight-filing {
    color: #0ea5e9;
    font-weight: 800;
}

.cta-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-subheading {
    font-size: 16px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 16px;
}

.cta-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.cta-benefits-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.cta-benefits-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #0ea5e9;
    font-size: 18px;
}

.cta-footer-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.btn-book-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-book-cta:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-cta:hover i {
    transform: translateX(4px);
}

.cta-images-content {
    position: relative;
}

.cta-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.cta-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.cta-img-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 200px;
}

.cta-img-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
}

.cta-img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 200px;
}

@media (max-width: 968px) {
    .cta-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-main-title {
        font-size: 28px;
    }

    .cta-intro-text,
    .cta-footer-text {
        font-size: 14px;
    }

    .cta-benefits-list li {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .tax-planning-cta {
        padding: 60px 0;
    }

    .cta-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cta-intro-text,
    .cta-footer-text {
        font-size: 13px;
    }

    .cta-subheading {
        font-size: 15px;
    }

    .cta-benefits-list li {
        font-size: 13px;
        padding-left: 28px;
    }

    .cta-image-grid {
        grid-template-columns: 1fr;
    }

    .cta-img-1,
    .cta-img-2,
    .cta-img-3 {
        grid-column: 1 / 2;
        height: auto;
    }

    .cta-img-1 {
        grid-row: 1 / 2;
    }

    .cta-img-2 {
        grid-row: 2 / 3;
    }

    .cta-img-3 {
        grid-row: 3 / 4;
    }
}

/* Consultative Approach Section */
.consultative-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.approach-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.approach-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.approach-text {
    display: flex;
    flex-direction: column;
}

.approach-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.approach-subtext {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.approach-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.approach-benefits li {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.approach-benefits li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
}

.approach-footer {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.btn-book-approach {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-book-approach:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-approach i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-approach:hover i {
    transform: translateX(4px);
}

/* Implementation Section */
.implementation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.implementation-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.implementation-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.implementation-text {
    display: flex;
    flex-direction: column;
}

.implementation-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.implementation-subtext {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.implementation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.implementation-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.implementation-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
}

.implementation-footer {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.btn-book-implementation {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-book-implementation:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-implementation i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-implementation:hover i {
    transform: translateX(4px);
}

.implementation-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Both Sections */
@media (max-width: 968px) {
    .approach-content-grid,
    .implementation-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .approach-main-title,
    .implementation-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .approach-intro,
    .approach-footer,
    .implementation-intro,
    .implementation-footer {
        font-size: 14px;
    }

    .approach-benefits li,
    .implementation-list li {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .consultative-approach-section,
    .implementation-section {
        padding: 60px 0;
    }

    .approach-content-grid,
    .implementation-content-grid {
        padding: 24px;
    }

    .approach-main-title,
    .implementation-main-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .approach-intro,
    .approach-footer,
    .implementation-intro,
    .implementation-footer {
        font-size: 13px;
    }

    .approach-subtext,
    .implementation-subtext {
        font-size: 14px;
    }

    .approach-benefits li,
    .implementation-list li {
        font-size: 12px;
        padding-left: 20px;
    }
}

/* Tax Advisory Hero Section */
.tax-advisory-hero {
    position: relative;
    height: 400px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tax-advisory-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tax-advisory-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tax-advisory-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tax Advisory Hero */
@media (max-width: 968px) {
    .tax-advisory-hero {
        height: 350px;
        background-attachment: scroll;
    }

    .tax-advisory-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .tax-advisory-hero {
        height: 300px;
    }

    .tax-advisory-hero-title {
        font-size: 48px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .tax-advisory-hero {
        height: 250px;
    }

    .tax-advisory-hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
}

/* Tax Advisory Intro Section */
.tax-advisory-intro {
    padding: 80px 0;
    background: #ffffff;
}

.tax-advisory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tax-advisory-text {
    display: flex;
    flex-direction: column;
}

.advisory-intro-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.btn-book-advisory {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
    margin-top: 12px;
}

.btn-book-advisory:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-advisory i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-advisory:hover i {
    transform: translateX(4px);
}

.tax-advisory-images {
    position: relative;
}

.advisory-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.advisory-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.advisory-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 200px;
}

.advisory-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 200px;
}

.advisory-img-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
}

.advisory-img-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 200px;
}

@media (max-width: 968px) {
    .tax-advisory-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advisory-intro-paragraph {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .tax-advisory-intro {
        padding: 60px 0;
    }

    .advisory-intro-paragraph {
        font-size: 14px;
    }

    .advisory-image-grid {
        grid-template-columns: 1fr;
    }

    .advisory-img-1,
    .advisory-img-2,
    .advisory-img-3,
    .advisory-img-4 {
        grid-column: 1 / 2;
        height: auto;
    }

    .advisory-img-1 {
        grid-row: 1 / 2;
    }

    .advisory-img-2 {
        grid-row: 2 / 3;
    }

    .advisory-img-3 {
        grid-row: 3 / 4;
    }

    .advisory-img-4 {
        grid-row: 4 / 5;
    }
}

/* Tax Advisory CTA Section */
.tax-advisory-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #3d5a6b 0%, #2c4557 100%);
}

.advisory-cta-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.advisory-cta-text {
    color: white;
}

.advisory-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.highlight-tax {
    color: #0ea5e9;
    font-weight: 800;
}

.advisory-cta-intro {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.advisory-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.advisory-cta-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.advisory-cta-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #0ea5e9;
    font-size: 18px;
}

.advisory-cta-list li strong {
    color: #0ea5e9;
    font-weight: 700;
}

.advisory-cta-footer {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.btn-book-advisory-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-book-advisory-cta:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-advisory-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-advisory-cta:hover i {
    transform: translateX(4px);
}

.advisory-cta-images {
    position: relative;
}

.advisory-cta-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.advisory-cta-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.advisory-cta-img-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 200px;
}

.advisory-cta-img-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
}

.advisory-cta-img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 200px;
}

@media (max-width: 968px) {
    .advisory-cta-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advisory-cta-title {
        font-size: 28px;
    }

    .advisory-cta-intro,
    .advisory-cta-footer {
        font-size: 14px;
    }

    .advisory-cta-list li {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .tax-advisory-cta {
        padding: 60px 0;
    }

    .advisory-cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .advisory-cta-intro,
    .advisory-cta-footer {
        font-size: 13px;
    }

    .advisory-cta-list li {
        font-size: 13px;
        padding-left: 28px;
    }

    .advisory-cta-image-grid {
        grid-template-columns: 1fr;
    }

    .advisory-cta-img-1,
    .advisory-cta-img-2,
    .advisory-cta-img-3 {
        grid-column: 1 / 2;
        height: auto;
    }

    .advisory-cta-img-1 {
        grid-row: 1 / 2;
    }

    .advisory-cta-img-2 {
        grid-row: 2 / 3;
    }

    .advisory-cta-img-3 {
        grid-row: 3 / 4;
    }
}

/* Our Tax Advisory Program Section */
.tax-advisory-program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.program-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.program-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.program-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.program-text {
    display: flex;
    flex-direction: column;
}

.program-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.program-subtext {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.program-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.program-benefits li {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.program-benefits li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
}

.program-benefits li strong {
    color: #1e293b;
    font-weight: 700;
}

.program-footer {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.btn-book-program {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-book-program:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-program i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-program:hover i {
    transform: translateX(4px);
}

/* The Advisory Difference Section */
.advisory-difference-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.difference-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.difference-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.difference-text {
    display: flex;
    flex-direction: column;
}

.difference-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.difference-subtext {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.difference-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.difference-benefits li {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.difference-benefits li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
}

.difference-benefits li strong {
    color: #1e293b;
    font-weight: 700;
}

.difference-footer {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.btn-book-difference {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-book-difference:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-difference i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-difference:hover i {
    transform: translateX(4px);
}

.difference-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Both Advisory Sections */
@media (max-width: 968px) {
    .program-content-grid,
    .difference-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .program-main-title,
    .difference-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .program-intro,
    .program-footer,
    .difference-intro,
    .difference-footer {
        font-size: 14px;
    }

    .program-benefits li,
    .difference-benefits li {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .tax-advisory-program-section,
    .advisory-difference-section {
        padding: 60px 0;
    }

    .program-content-grid,
    .difference-content-grid {
        padding: 24px;
    }

    .program-main-title,
    .difference-main-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .program-intro,
    .program-footer,
    .difference-intro,
    .difference-footer {
        font-size: 13px;
    }

    .program-subtext,
    .difference-subtext {
        font-size: 14px;
    }

    .program-benefits li,
    .difference-benefits li {
        font-size: 12px;
        padding-left: 20px;
    }
}

/* Sales Tax Intro Section */
.sales-tax-intro {
    padding: 80px 0;
    background: #ffffff;
}

.sales-tax-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sales-tax-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sales-tax-text {
    display: flex;
    flex-direction: column;
}

.sales-tax-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.3;
}

.highlight-sales {
    color: #0ea5e9;
    font-weight: 800;
}

.sales-tax-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.btn-book-sales {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-book-sales:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-sales i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-sales:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .sales-tax-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sales-tax-title {
        font-size: 28px;
    }

    .sales-tax-paragraph {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .sales-tax-intro {
        padding: 60px 0;
    }

    .sales-tax-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .sales-tax-paragraph {
        font-size: 14px;
    }
}

/* Sales Tax CTA Section */
.sales-tax-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #3d5a6b 0%, #2c4557 100%);
}

.sales-cta-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.sales-cta-text {
    color: white;
}

.sales-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.highlight-reseller {
    color: #0ea5e9;
    font-weight: 800;
}

.sales-cta-intro {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.sales-cta-subtext {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
}

.sales-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.sales-cta-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.sales-cta-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
}

.sales-cta-list li strong {
    color: #0ea5e9;
    font-weight: 700;
}

.sales-cta-footer {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.btn-book-sales-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-book-sales-cta:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-sales-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-sales-cta:hover i {
    transform: translateX(4px);
}

.sales-cta-images {
    position: relative;
}

.sales-cta-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.sales-cta-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.sales-cta-img-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 200px;
}

.sales-cta-img-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
}

.sales-cta-img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 200px;
}

@media (max-width: 968px) {
    .sales-cta-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sales-cta-title {
        font-size: 28px;
    }

    .sales-cta-intro,
    .sales-cta-footer {
        font-size: 14px;
    }

    .sales-cta-list li {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .sales-tax-cta {
        padding: 60px 0;
    }

    .sales-cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .sales-cta-intro,
    .sales-cta-footer {
        font-size: 13px;
    }

    .sales-cta-subtext {
        font-size: 14px;
    }

    .sales-cta-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .sales-cta-image-grid {
        grid-template-columns: 1fr;
    }

    .sales-cta-img-1,
    .sales-cta-img-2,
    .sales-cta-img-3 {
        grid-column: 1 / 2;
        height: auto;
    }

    .sales-cta-img-1 {
        grid-row: 1 / 2;
    }

    .sales-cta-img-2 {
        grid-row: 2 / 3;
    }

    .sales-cta-img-3 {
        grid-row: 3 / 4;
    }
}

/* Filing & Remitting Sales Tax Section */
.filing-remitting-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.filing-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.filing-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.filing-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.filing-text {
    display: flex;
    flex-direction: column;
}

.filing-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.filing-subtext {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.filing-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.filing-benefits li {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.filing-benefits li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
}

.filing-benefits li strong {
    color: #1e293b;
    font-weight: 700;
}

.filing-footer {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.btn-book-filing {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-book-filing:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-filing i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-filing:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .filing-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .filing-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .filing-intro,
    .filing-footer {
        font-size: 14px;
    }

    .filing-benefits li {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .filing-remitting-section {
        padding: 60px 0;
    }

    .filing-content-grid {
        padding: 24px;
    }

    .filing-main-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .filing-intro,
    .filing-footer {
        font-size: 13px;
    }

    .filing-subtext {
        font-size: 14px;
    }

    .filing-benefits li {
        font-size: 12px;
        padding-left: 20px;
    }
}

/* Staying on Top of Compliance Section */
.compliance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.compliance-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.compliance-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.compliance-text {
    display: flex;
    flex-direction: column;
}

.compliance-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.compliance-subtext {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.compliance-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.compliance-benefits li {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.compliance-benefits li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
}

.compliance-benefits li strong {
    color: #1e293b;
    font-weight: 700;
}

.compliance-footer {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.btn-book-compliance {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-book-compliance:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-compliance i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-compliance:hover i {
    transform: translateX(4px);
}

.compliance-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .compliance-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .compliance-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .compliance-intro,
    .compliance-footer {
        font-size: 14px;
    }

    .compliance-benefits li {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .compliance-section {
        padding: 60px 0;
    }

    .compliance-content-grid {
        padding: 24px;
    }

    .compliance-main-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .compliance-intro,
    .compliance-footer {
        font-size: 13px;
    }

    .compliance-subtext {
        font-size: 14px;
    }

    .compliance-benefits li {
        font-size: 12px;
        padding-left: 20px;
    }
}
