/* Aquity Tax Advisors - CSS Design System */
/* Based on Attax Template with Aquity Brand Colors */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary: #1C5FA8;
    --primary-dark: #14467B;
    --primary-light: #2D7ACC;
    --primary-bg: #E8F4FF;

    /* Text Colors */
    --text-dark: #212121;
    --text-body: #777777;
    --text-light: #999999;
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #F5F5F5;
    --bg-dark: #212121;
    --bg-footer: #1A1A1A;

    /* Accent Colors */
    --accent-success: #28A745;
    --accent-warning: #FFC107;
    --accent-danger: #DC3545;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Font Families */
    --font-primary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'IBM Plex Sans', var(--font-primary);

    /* Container Widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul,
ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-body);
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* ===== GRID ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--spacing-md) * -0.5);
}

.col {
    flex: 1;
    padding: 0 calc(var(--spacing-md) * 0.5);
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* ===== UTILITIES ===== */
.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.d-flex {
    display: flex;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-white);
    border-color: var(--bg-dark);
}

.btn-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===== HEADER ===== */
.top-bar {
    background: var(--primary);
    color: var(--text-white);
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.top-bar a:not(.btn) {
    color: var(--text-white);
}

.top-bar a:not(.btn):hover {
    opacity: 0.8;
}

.top-bar-contact {
    align-items: center;
}

.top-bar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.75rem var(--spacing-md);
    color: var(--text-body);
}

.dropdown a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.dropdown a::after {
    display: none;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.header-phone i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(28, 95, 168, 0.9), rgba(20, 70, 123, 0.95)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
}

.hero-shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-gray {
    background: var(--bg-gray);
}

.section-primary {
    background: var(--primary);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.section-dark .section-subtitle {
    color: var(--primary-light);
}

/* ===== FEATURE CARDS (Old Service Card Style) ===== */
.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(28, 95, 168, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--text-white);
}

.feature-card h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-body);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

/* ===== MODERN CLEAN SERVICE CARDS (Image Top, Text Bottom) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.services-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {

    .services-grid,
    .services-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .services-grid.grid-3 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 0 !important;
    /* Ensure no padding touches borders */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image on top */
.service-image-container {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.1);
}

.service-icon-floating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

/* Text on bottom */
.service-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    text-align: left;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.service-card h4 {
    color: #1a202c;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.service-badge {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card p {
    color: #4a5568;
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    background: #f7fafc;
    color: #718096;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #edf2f7;
}

.service-tag i {
    color: #f59e0b;
    font-size: 0.75rem;
}

/* Action Button */
.service-link {
    display: inline-block;
    width: 100%;
    background: var(--primary);
    color: #ffffff !important;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
}

.service-link:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(28, 95, 168, 0.3);
}

/* Text-only Service Card (About Page) */
.service-card.text-only {
    background: var(--bg-white);
    color: var(--text-dark);
    justify-content: flex-start;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card.text-only:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.text-only::before {
    display: none;
}

.service-card.text-only h4 {
    color: var(--primary);
    text-shadow: none;
    font-size: 1.75rem;
    margin-top: var(--spacing-sm);
    margin-bottom: 1rem;
}

.service-card.text-only p {
    color: var(--text-body);
    display: block;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 1;
}

.service-card.text-only .service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card.text-only:hover .service-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge small {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

.about-list {
    margin: var(--spacing-lg) 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.about-list i {
    color: var(--primary);
    margin-top: 4px;
}

/* ===== STATS/COUNTER ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.section-dark .stat-number {
    color: var(--text-white);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== TEAM CARDS ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--text-white);
}

.team-info {
    padding: var(--spacing-md);
    text-align: center;
}

.team-info h4 {
    margin-bottom: var(--spacing-xs);
}

.team-info span {
    color: var(--primary);
    font-size: 0.875rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0;
}

.author-info span {
    color: var(--primary);
    font-size: 0.875rem;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: var(--spacing-sm);
}

/* ===== CASE STUDIES/PORTFOLIO ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 30%, rgba(28, 95, 168, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-lg);
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-overlay h4 {
    color: var(--text-white);
    margin: var(--spacing-xs) 0;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card.featured {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--accent-warning);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-header h4 {
    margin-bottom: var(--spacing-sm);
}

.pricing-card.featured .pricing-header h4 {
    color: var(--text-white);
}

.pricing-price {
    margin: var(--spacing-md) 0;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
    color: var(--text-white);
}

.pricing-price .period {
    color: var(--text-body);
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--bg-gray);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features i {
    color: var(--accent-success);
}

.pricing-card.featured .pricing-features i {
    color: var(--text-white);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition-fast);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: var(--primary-bg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-body);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--primary);
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.blog-content h4 {
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-fast);
}

.blog-card:hover .blog-content h4 {
    color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info-list {
    margin-top: var(--spacing-lg);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    margin-bottom: var(--spacing-xs);
}

.contact-info-text p {
    margin: 0;
    color: var(--text-body);
}

.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.form-control {
    width: 100%;
    padding: 0.875rem var(--spacing-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.cta h2 {
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
}

.cta p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--spacing-xxl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-title {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    font-size: 0.875rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, rgba(28, 95, 168, 0.9), rgba(20, 70, 123, 0.95)), url('images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    color: var(--text-white);
}

.page-banner h1 {
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--text-white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== 404 PAGE ===== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.error-content h2 {
    margin-bottom: var(--spacing-md);
}

.error-content p {
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
}

/* ===== AFFILIATIONS ===== */
.affiliations {
    background: var(--bg-gray);
    padding: var(--spacing-xl) 0;
}

.affiliations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xxl);
    flex-wrap: wrap;
}

.affiliations-logos img {
    height: 60px;
    opacity: 0.7;
    transition: var(--transition-fast);
    filter: grayscale(100%);
}

.affiliations-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}

.text-dark {
    color: var(--text-dark);
}

.text-white {
    color: var(--text-white);
}

.text-muted {
    color: var(--text-body);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-white {
    background-color: var(--bg-white);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.py-5 {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: var(--spacing-xs);
}

.gap-2 {
    gap: var(--spacing-sm);
}

.gap-3 {
    gap: var(--spacing-md);
}

/* ===== RESPONSIVE ===== */

/* 14-inch Laptop Screens (1366px and below) */
@media (max-width: 1440px) {
    .container {
        max-width: 1280px;
        padding: 0 var(--spacing-md);
    }

    /* Header adjustments for 14-inch */
    .header-inner {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 40px;
        max-width: 180px;
    }

    .nav-menu {
        gap: var(--spacing-md);
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .header-phone span {
        font-size: 0.9rem;
    }

    /* Hero adjustments */
    .hero {
        min-height: 75vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Section spacing */
    .section {
        padding: var(--spacing-xl) 0;
    }

    h2 {
        font-size: 2rem;
    }

    /* Grid adjustments */
    .services-grid {
        gap: var(--spacing-md);
    }

    .service-card {
        padding: 0 !important;
    }

    /* Footer */
    .footer-grid {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 1366px) {
    .container {
        max-width: 1200px;
    }

    .logo img {
        height: 38px;
        max-width: 170px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .header-contact .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
    }

    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }

    /* About section */
    .about-content {
        gap: var(--spacing-lg);
    }

    .about-badge {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .about-badge span {
        font-size: 2rem;
    }
}

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
    .container {
        max-width: var(--container-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .logo img {
        height: 36px;
        max-width: 160px;
    }
}

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
    .container {
        max-width: var(--container-md);
    }

    /* Top Bar */
    .top-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-bar-contact {
        justify-content: center;
        align-items: center;
    }

    .top-bar-contact a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* About and Contact grids */
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-image {
        order: -1;
    }

    .about-badge {
        bottom: -10px;
        right: 10px;
    }

    /* Stats */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    /* Header Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        gap: 0;
    }

    .nav-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--bg-gray);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-contact .btn {
        display: none;
    }

    .header-phone span {
        display: none;
    }

    .header-phone i {
        font-size: 1.5rem;
    }

    /* Dropdown */
    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: var(--spacing-md);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--bg-gray);
        border-radius: var(--radius-md);
        margin-top: var(--spacing-sm);
    }

    .nav-item:hover .dropdown,
    .nav-item.active .dropdown {
        display: block;
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* Page Banner */
    .page-banner {
        padding: var(--spacing-xl) 0;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    /* Hero */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        max-width: var(--container-sm);
        padding: 0 var(--spacing-md);
    }

    /* Top Bar - Hide on mobile */
    .top-bar {
        display: none;
    }

    /* Row and Columns */
    .row {
        flex-direction: column;
    }

    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
        text-align: center;
        padding: var(--spacing-xl) 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-shape {
        display: none;
    }

    /* Section Headers */
    .section-header {
        padding: 0 var(--spacing-sm);
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Contact Grid */
    .contact-grid {
        gap: var(--spacing-xl);
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-brand {
        margin-bottom: var(--spacing-md);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links li,
    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        max-width: 400px;
        margin: 0 auto;
    }

    /* CTA */
    .cta {
        padding: var(--spacing-xl) 0;
        text-align: center;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    /* Pricing */
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Featured Boxes */
    .feature-boxes {
        grid-template-columns: 1fr;
    }

    /* Why Choose Us */
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonial */
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    /* Error Page */
    .error-content h1 {
        font-size: 5rem;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    /* Typography */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Header */
    .header-inner {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* Services Grid */
    .services-grid,
    .team-grid,
    .blog-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 0 !important;
    }

    /* Stats */
    .stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-item {
        padding: var(--spacing-md);
    }

    .stat-number {
        font-size: 2.25rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Buttons */
    .btn {
        width: 100%;
        text-align: center;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    /* Forms */
    .form-control {
        padding: 0.875rem 1rem;
    }

    textarea.form-control {
        min-height: 120px;
    }

    /* FAQ */
    .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }

    /* Page Banner */
    .page-banner {
        padding: var(--spacing-lg) 0;
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    /* Pricing */
    .pricing-card {
        padding: var(--spacing-md);
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    /* Affiliations */
    .affiliations-logos {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .affiliations-logos img {
        height: 40px;
    }

    /* Error */
    .error-content h1 {
        font-size: 4rem;
    }

    /* CTA */
    .cta .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra Small (400px and below) */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .header-phone {
        display: none;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-price .amount {
        font-size: 2rem;
    }
}

/* ===== SERVICE DETAILS ===== */
.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
}

.service-main img {
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.service-main h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.service-main ul {
    margin-bottom: var(--spacing-lg);
}

.service-main ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.service-main ul li i {
    color: var(--accent-success);
    margin-top: 5px;
}

.highlight-box {
    background: var(--primary-bg);
    border-left: 4px solid var(--primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.sidebar-card h4 {
    border-bottom: 2px solid var(--bg-gray);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.sidebar-links li {
    border-bottom: 1px solid var(--bg-gray);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    font-weight: 500;
}

.sidebar-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        order: -1;
    }
}