/* Modern CSS Reset and Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #d4af37;
    --accent-hover: #b8941f;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 12px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-white);
    padding: 12px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-top {
    background: var(--primary-color);
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-white);
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}
/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .search-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }

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

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

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

    /* Header top adjustments for mobile */
    .header-top-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-email {
        margin: 0.5rem 0;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0.75rem 0;
    }

    .nav-content {
        position: relative;
    }

    .logo a img {
        height: 50px;
        width: 70px;
    }

    .mobile-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 280px;
        padding: 90px 1.5rem 1.5rem;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .header-top {
        padding: 6px 0;
        font-size: 0.8rem;
    }

    .contact-link {
        font-size: 0.8rem;
    }
}

/* Overlay for mobile menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}
/* Hero Section with Video Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-white);
    margin-top: 120px;
    overflow: hidden;
    padding: 80px 0; /* Added padding for breathing room */
}

/* Video Background Container */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Hero Video Styling */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video Overlay for Better Text Readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(26, 54, 93, 0.85) 0%, 
        rgba(45, 55, 72, 0.75) 100%
    );
    z-index: 1;
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto; /* Added bottom margin to separate from features */
}

/* Hero Subtitle */
.hero-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Features - Now properly positioned under hero content */
.hero-features {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 40px; /* Space between buttons and features */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 1.75rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* About Section - Proper spacing from hero */
.about-section {
    padding: 120px 0 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 100px;
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        margin-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-features {
        margin-top: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .about-section {
        padding: 80px 0 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .hero-features {
        margin-top: 20px;
    }
    
    .about-section {
        padding: 60px 0 40px 0;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
}
/* About Section - Professional Styling */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Section Header Enhancements */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    position: relative;
    padding-left: 20px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--accent-color);
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-description {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}
/* Team Images Responsive Styling */
.team-member .member-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.team-member .member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}

/* Leadership Section Team Images */
.leadership-section .member-photo {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.leadership-section .member-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: var(--transition);
}

/* Hover Effects */
.team-member:hover .member-image img,
.leadership-section .team-member:hover .member-photo img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .team-member .member-image img {
        height: 280px;
    }
    
    .leadership-section .member-photo img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .team-member .member-image img {
        height: 250px;
    }
    
    .leadership-section .member-photo img {
        height: 220px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .team-member .member-image img {
        height: 220px;
    }
    
    .leadership-section .member-photo img {
        height: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Ensure proper loading and aspect ratio */
.team-member .member-image,
.leadership-section .member-photo {
    aspect-ratio: 3/4;
}

.team-member .member-image img,
.leadership-section .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 3/4) {
    .team-member .member-image::before,
    .leadership-section .member-photo::before {
        content: '';
        display: block;
        padding-top: 133.33%; /* 4:3 aspect ratio */
    }
    
    .team-member .member-image img,
    .leadership-section .member-photo img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Optimize image loading */
.team-member .member-image img,
.leadership-section .member-photo img {
    loading: lazy;
    background: var(--bg-light);
}

/* High DPI screens optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .team-member .member-image img,
    .leadership-section .member-photo img {
        /* Consider using higher resolution images for retina displays */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}


/* Mission Statement */
.mission-statement {
    margin-bottom: 3rem;
}

.mission-statement h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.mission-statement h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Differentiators */
.differentiators {
    margin-bottom: 3rem;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.differentiator-item:hover {
    border-color: var(--border-color);
    background: var(--bg-white);
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.differentiator-item:hover .diff-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    transform: scale(1.1);
}

.diff-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.diff-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section - Clean Black Design */
.stats-section-black {
    background: #000000;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Stats */
.main-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border: 1px solid #333333;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #ffffff;
    border-color: #d4af37;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Trust Section */
.trust-section {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 50px 30px;
}

.trust-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #333333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: #1a1a1a;
    border-color: #d4af37;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
}

.trust-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-content p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .stats-section-black {
        padding: 100px 0;
    }
    
    .main-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item {
        padding: 50px 30px;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trust-section {
        padding: 60px 40px;
    }
    
    .trust-title {
        font-size: 2.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .main-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .stat-item {
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .trust-item {
        padding: 30px 25px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .main-stats {
        gap: 30px;
    }
    
    .stat-item {
        padding: 50px 30px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .stats-section-black {
        padding: 60px 0;
    }
    
    .main-stats {
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .trust-section {
        padding: 40px 25px;
    }
    
    .trust-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .trust-icon {
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats-container {
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .trust-section {
        padding: 30px 20px;
    }
    
    .trust-title {
        font-size: 1.8rem;
    }
    
    .trust-item {
        padding: 20px 15px;
    }
    
    .trust-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .stat-item {
        border-color: #555555;
    }
    
    .trust-section {
        border-color: #555555;
    }
    
    .trust-item {
        border-color: #555555;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .stat-item,
    .trust-item,
    .trust-icon {
        transition: none;
    }
    
    .stat-item:hover,
    .trust-item:hover {
        transform: none;
    }
}


/* About Actions */
.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About Visual */
.about-visual {
    position: relative;
}

.visual-container {
    position: relative;
}

.visual-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.visual-main:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.visual-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.visual-main:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--text-white);
    transform: translateY(20px);
    transition: var(--transition);
}

.visual-main:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Certification Badges */
.certification-badges {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.cert-badge {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.cert-badge:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.cert-badge i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.cert-badge span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: left;
}

.trust-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.trust-item:hover i {
    background: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.trust-item span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    .experience-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 2rem;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .certification-badges {
        position: relative;
        bottom: 0;
        left: 0;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .differentiator-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .diff-icon {
        margin: 0 auto;
    }
    
    .visual-main img {
        height: 300px;
    }
}
/* Services Section */
/* 
 * Services Section Styles for CodeNCount Consultancy
 * Professional styling for services section with three core offerings
 */

/* CSS Variables for consistent theming */
:root {
    /* Color Palette */
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #d4af37;
    --accent-hover: #b8941f;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Effects */
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --section-padding: 100px 0;
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

/* Services Section Styling */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    position: relative;
    padding-left: 20px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--accent-color);
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-description {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Individual Service Card */
.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Service Card Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon Styling */
.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-white);
    font-size: 2.2rem;
    transition: var(--transition);
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    transform: scale(1.1) rotate(5deg);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: scale(1.1);
}

/* Service Content Styling */
.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Service Features List */
.service-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Service Link Styling */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    background: transparent;
}

.service-link:hover {
    background: var(--accent-color);
    color: var(--text-white);
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Services Call-to-Action */
.services-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

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

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styling */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--text-white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--text-white);
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Tablets */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .services-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .services-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Animation for service cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* 
 * Expertise Solutions Section - Modern Design
 * Fresh styling with new class names and modern aesthetics
 */

/* Modern CSS Variables */
:root {
    /* Primary Colors */
    --deep-blue: #0f1a2f;
    --royal-blue: #1e2a4a;
    --electric-blue: #2563eb;
    --light-blue: #3b82f6;
    
    /* Accent Colors */
    --gold-primary: #d4af37;
    --gold-hover: #b8941f;
    --gold-light: #fef3cd;
    
    /* Neutral Colors */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    /* Semantic Colors */
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-light: var(--slate-500);
    --bg-primary: #ffffff;
    --bg-secondary: var(--slate-50);
    --border-light: var(--slate-200);
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-gold: 0 10px 30px -5px rgb(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --section-padding: 120px 0;
}

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

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

/* Expertise Solutions Section */
.expertise-solutions {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--slate-50) 0%, #ffffff 50%, var(--slate-50) 100%);
    position: relative;
    overflow: hidden;
}

.expertise-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.5;
}

.expertise-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Expertise Intro */
.expertise-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--deep-blue);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.expertise-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--electric-blue));
    border-radius: var(--radius-full);
}

.expertise-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 32px;
    font-weight: 400;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

/* Solution Card */
.solution-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--electric-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

/* Individual Solution Styles */
.solution-audit:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.solution-tax:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.solution-advisory:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

/* Solution Badge */
.solution-badge {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.solution-audit .solution-badge {
    background: linear-gradient(135deg, var(--electric-blue), var(--light-blue));
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.solution-tax .solution-badge {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: white;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.solution-advisory .solution-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.solution-card:hover .solution-badge {
    transform: scale(1.1) rotate(5deg);
}

/* Solution Content */
.solution-content {
    flex: 1;
    margin-bottom: 32px;
}

.solution-heading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Solution Features */
.solution-features {
    list-style: none;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid var(--slate-100);
    transition: var(--transition-base);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    color: var(--electric-blue);
    transform: translateX(4px);
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.solution-audit .feature-dot {
    background: var(--electric-blue);
}

.solution-tax .feature-dot {
    background: var(--gold-primary);
}

.solution-advisory .feature-dot {
    background: #8b5cf6;
}

.feature-item:hover .feature-dot {
    transform: scale(1.5);
}

/* Solution Action */
.solution-action {
    margin-top: auto;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.action-link:hover::before {
    left: 100%;
}

.action-link span {
    position: relative;
    z-index: 2;
}

.action-link i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.action-link:hover i {
    transform: translateX(4px);
}

/* Action Link Variants */
.action-audit {
    background: var(--electric-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.action-audit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.action-tax {
    background: var(--gold-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.action-tax:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.action-advisory {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.action-advisory:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Expertise CTA */
.expertise-cta {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.expertise-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,0 1000,1000" fill="rgba(212,175,55,0.05)"/></svg>');
    background-size: cover;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    white-space: nowrap;
}

.cta-primary {
    background: var(--gold-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 24px;
    }
    
    .expertise-title {
        font-size: 3rem;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .expertise-solutions {
        padding: 80px 0;
    }
    
    .expertise-title {
        font-size: 2.5rem;
    }
    
    .expertise-subtitle {
        font-size: 1.125rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-card {
        padding: 32px 24px;
    }
    
    .expertise-cta {
        padding: 48px 32px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .expertise-container {
        padding: 0 16px;
    }
    
    .expertise-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 24px 20px;
    }
    
    .solution-badge {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .expertise-cta {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.quote-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.client-details span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}


/* IT Services Section for Homepage */
.it-services-home {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0f1a2f 0%, #1a2a3a 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.it-services-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,1000 0,1000" fill="rgba(212,175,55,0.05)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.it-services-home .container {
    position: relative;
    z-index: 2;
}

.it-services-home .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.it-services-home .section-subtitle {
    color: var(--accent-color);
}

.it-services-home .section-title {
    color: var(--text-white);
    font-size: 2.8rem;
}

.it-services-home .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* IT Services Grid */
.it-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.it-service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.it-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.it-service-card:hover::before {
    left: 100%;
}

.it-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.it-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2rem;
    transition: var(--transition);
    position: relative;
}

.it-service-card:hover .it-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.it-service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: var(--transition);
}

.it-service-card:hover .it-service-icon::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.it-service-content h3 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.it-service-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.it-service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.it-service-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.it-service-features li:last-child {
    border-bottom: none;
}

.it-service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.it-service-action {
    margin-top: auto;
}

.it-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    background: transparent;
}

.it-service-link:hover {
    background: var(--accent-color);
    color: var(--text-white);
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* IT Services CTA */
.it-services-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.cta-text h3 {
    color: var(--text-white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Service Card Colors */
.it-service-card:nth-child(1):hover .it-service-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.it-service-card:nth-child(2):hover .it-service-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.it-service-card:nth-child(3):hover .it-service-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.it-service-card:nth-child(4):hover .it-service-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.it-service-card:nth-child(5):hover .it-service-icon {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.it-service-card:nth-child(6):hover .it-service-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .it-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .it-service-card {
        padding: 2.5rem 2rem;
    }
    
    .it-services-home .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .it-services-home {
        padding: 80px 0;
    }
    
    .it-services-home .section-title {
        font-size: 2rem;
    }
    
    .it-services-home .section-description {
        font-size: 1.1rem;
    }
    
    .it-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .it-service-card {
        padding: 2rem 1.5rem;
    }
    
    .it-service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .it-services-cta {
        padding: 3rem 2rem;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .it-services-home {
        padding: 60px 0;
    }
    
    .it-services-home .section-title {
        font-size: 1.8rem;
    }
    
    .it-service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .it-service-content h3 {
        font-size: 1.3rem;
    }
    
    .it-services-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .it-service-link {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Animation for service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.it-service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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


/* Footer */
/* New Footer Styles with Unique Classes */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3a 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,1000 0,1000" fill="rgba(212,175,55,0.03)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-link {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.logo-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Newsletter */
.footer-newsletter {
    max-width: 400px;
    margin-left: auto;
}

.footer-newsletter h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background: var(--accent-color);
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Footer Main - 4 Columns */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-nav-link:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.footer-nav-link:hover::before {
    width: 6px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--accent-color);
}

/* Trust Badges */
.footer-trust {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0 2rem;
    }
    
    .footer-newsletter {
        margin-left: 0;
        max-width: 100%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-trust {
        padding: 2rem 0;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        padding: 1rem;
    }
    
    .newsletter-btn {
        padding: 0.75rem 1rem;
    }
}
/* 
 * FAQ Section Styles for CodeNCount Consultancy
 * Professional styling for FAQ accordion section
 */

/* CSS Variables for consistent theming */
:root {
    /* Color Palette */
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #d4af37;
    --accent-hover: #b8941f;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Effects */
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --section-padding: 100px 0;
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

/* FAQ Section Styling */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Individual FAQ Item */
.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

/* Hover effect for FAQ items */
.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

/* FAQ Question Styling */
.faq-question {
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

/* Hover effect for questions */
.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* FAQ Toggle Icon */
.faq-toggle {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

/* FAQ Answer Styling */
.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 1.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Active State for Open FAQ Items */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Contact Call-to-Action Section */
.contact-cta {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 4rem;
    box-shadow: var(--shadow);
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Primary Button Styling */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    font-size: 1rem;
}

/* Button Hover Effects */
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem;
    }
    
    .contact-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.6rem;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.25rem 0;
        font-size: 0.95rem;
    }
    
    .contact-cta {
        padding: 2rem 1.25rem;
    }
    
    .contact-cta h3 {
        font-size: 1.4rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Testimonials Section - Professional Styling with Fixed Height */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 50%, var(--bg-light) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,1000 1000,0 1000,1000" fill="rgba(212,175,55,0.02)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.testimonials-section .section-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Slider Container with Fixed Height */
.testimonials-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    height: 500px; /* Fixed height */
    overflow: hidden; /* Hide overflow to maintain fixed height */
}

.testimonials-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Take full height of container */
    opacity: 0;
    transform: translateX(30px);
    overflow: hidden; /* Prevent content overflow */
}

.testimonial-card.active {
    display: grid;
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

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

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden; /* Prevent content overflow */
}

.quote-icon {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    flex-shrink: 0; /* Prevent shrinking */
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0; /* Prevent shrinking */
}

.rating i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    flex: 1; /* Take available space */
    overflow-y: auto; /* Allow scrolling if content is too long */
    padding-right: 10px; /* Space for scrollbar */
}

/* Custom scrollbar for testimonial text */
.testimonial-text::-webkit-scrollbar {
    width: 4px;
}

.testimonial-text::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 2px;
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    flex-shrink: 0; /* Prevent shrinking */
    margin-top: auto; /* Push to bottom */
}

.company, .industry {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.industry {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
}

/* Client Info */
.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    min-width: 200px;
    flex-shrink: 0; /* Prevent shrinking */
}

.client-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow);
    flex-shrink: 0; /* Prevent shrinking */
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.8rem;
    border: 2px solid var(--bg-white);
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0; /* Prevent shrinking */
}

.client-name {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.client-role {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.client-verification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.client-verification i {
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--accent-color);
}

/* Trust Indicators */
.testimonial-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonials-section .section-title {
        font-size: 2.4rem;
    }
    
    .testimonial-trust {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-slider-container {
        height: 600px; /* Increased height for single column layout */
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section .section-description {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-meta {
        justify-content: center;
        gap: 1rem;
    }
    
    .slider-controls {
        gap: 1.5rem;
    }
    
    .testimonial-trust {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-slider-container {
        height: 550px; /* Adjusted for mobile */
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .client-info {
        min-width: auto;
    }
    
    .client-avatar {
        width: 80px;
        height: 80px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .slider-controls {
        gap: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-slider-container {
        height: 500px; /* Minimum height for mobile */
    }
}

/* Animation for smooth transitions */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card.active {
    animation: slideIn 0.5s ease-out;
}


/* Footer Section - Professional Styling */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3a 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,1000 0,1000" fill="rgba(212,175,55,0.03)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-link {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.logo-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Newsletter */
.footer-newsletter {
    max-width: 400px;
    margin-left: auto;
}

.footer-newsletter h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background: var(--accent-color);
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Footer Main Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.footer-link:hover::before {
    width: 6px;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-text:hover {
    color: var(--accent-color);
}

/* Trust Badges */
.footer-trust {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0 2rem;
    }
    
    .footer-newsletter {
        margin-left: 0;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-trust {
        padding: 2rem 0;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        padding: 1rem;
    }
    
    .newsletter-btn {
        padding: 0.75rem 1rem;
    }
}

/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,1000 0,1000" fill="rgba(212,175,55,0.1)"/></svg>');
    background-size: cover;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* Our Story Section */
.our-story-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content {
    padding-right: 2rem;
}

.story-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.milestones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.milestone {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.milestone:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.milestone-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.milestone-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.story-visual {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mission-card,
.vision-card,
.values-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.mission-card {
    border-top-color: var(--accent-color);
}

.vision-card {
    border-top-color: var(--primary-color);
}

.values-card {
    border-top-color: var(--secondary-color);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-white);
    font-size: 2rem;
    transition: var(--transition);
}

.mission-card:hover .card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.values-list i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.advantage-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 2rem;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    transform: scale(1.1);
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Leadership Team Section */
.leadership-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.member-photo {
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
	
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.certification-item {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 2rem;
    transition: var(--transition);
}

.certification-item:hover .cert-icon {
    transform: scale(1.1) rotate(5deg);
}

.certification-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.certification-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    text-align: center;
}

.about-cta-section .cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-cta-section .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .mission-card,
    .vision-card,
    .values-card,
    .advantage-card,
    .certification-item {
        padding: 2rem 1.5rem;
    }
    
    .about-cta-section .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .about-cta-section .cta-content p {
        font-size: 1.1rem;
    }
}

/* Team Section Styles */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

/* Team Filter */
.team-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: rem;
}

.team-member {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.team-member.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

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

.member-image {
    position: Left;
    overflow: hidden;
    height:50%;
}

.member-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(212, 175, 55, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.team-member:hover .social-link {
    transform: translateY(0);
    opacity: 1;
}

.social-link:nth-child(1) { transition-delay: 0.1s; }
.social-link:nth-child(2) { transition-delay: 0.2s; }
.social-link:nth-child(3) { transition-delay: 0.3s; }

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-expertise {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.expertise-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.expertise-tag:hover {
    background: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Team CTA */
.team-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
    color: var(--text-white);
}

.team-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }
.team-member:nth-child(5) { animation-delay: 0.5s; }
.team-member:nth-child(6) { animation-delay: 0.6s; }
.team-member:nth-child(7) { animation-delay: 0.7s; }
.team-member:nth-child(8) { animation-delay: 0.8s; }
.team-member:nth-child(9) { animation-delay: 0.9s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-filter {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    
    .team-cta {
        padding: 3rem 2rem;
    }
    
    .team-cta h3 {
        font-size: 1.8rem;
    }
    
    .team-cta p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .member-image {
        height: 250px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .team-cta h3 {
        font-size: 1.6rem;
    }
    
    .team-cta p {
        font-size: 1rem;
    }
}


/* Services Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,1000 0,1000" fill="rgba(212,175,55,0.1)"/></svg>');
    background-size: cover;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Navigation */
.services-navigation {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 120px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-tab {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.nav-tab:hover {
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-tab.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Service Sections */
.service-section {
    padding: var(--section-padding);
    display: none;
}

.service-section.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.taxation-section {
    background: var(--bg-white);
}

.it-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 100%);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-white);
    font-size: 2.2rem;
    transition: var(--transition);
    position: relative;
}

.taxation-section .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.it-section .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-features i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-actions .btn-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    text-align: center;
}

.services-cta-section .cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-cta-section .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .services-navigation {
        top: 100px;
        padding: 1.5rem 0;
    }
    
    .services-nav-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .nav-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .service-actions .btn-primary,
    .service-link {
        justify-content: center;
        text-align: center;
    }
    
    .services-cta-section .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .services-cta-section .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .services-cta-section .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .services-cta-section .cta-content p {
        font-size: 1rem;
    }
}

/* Contact Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,1000 0,1000" fill="rgba(212,175,55,0.1)"/></svg>');
    background-size: cover;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Info Section */
/* Contact Page Specific Styles */
.contact-info-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 1.75rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.contact-info-card .contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    word-break: break-word;
}

.contact-info-card .contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-card address {
    color: var(--text-dark);
    font-weight: 500;
    font-style: normal;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.95rem;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.85rem;
    display: block;
    margin-top: auto;
    font-style: italic;
}

/* Main Contact Section */
.main-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group label.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    font-family: inherit;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1rem;
    display: none;
}

.error-message.show {
    display: block;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.95rem;
}

.submit-btn {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Details */
.contact-details {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.details-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.details-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.office-hours {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.office-hours h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.hour-item span:last-child {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.emergency-contact {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.emergency-contact h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.emergency-contact p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.emergency-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.emergency-link:hover {
    color: #c0392b;
    transform: translateX(5px);
}

.social-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-contact .social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-contact .social-link:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

/* Success Message */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

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

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-details {
        position: static;
        order: -1;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 50px 0;
    }
    
    .main-contact-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 15px;
    }
    
    .contact-info-card {
        padding: 2rem 1.25rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-grid {
        padding: 0 15px;
        gap: 2rem;
    }
    
    .contact-form-container,
    .contact-details {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .details-content h2 {
        font-size: 1.5rem;
    }
    
    .office-hours h4,
    .emergency-contact h4,
    .social-contact h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .main-contact-section {
        padding: 50px 0;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .contact-info-card .contact-link {
        font-size: 0.95rem;
    }
    
    .contact-form-container,
    .contact-details {
        padding: 1.5rem 1.25rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .details-content h2 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-contact .social-link {
        width: 40px;
        height: 40px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-info-card {
        border-width: 0.5px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .contact-info-card,
    .contact-icon,
    .submit-btn,
    .emergency-link,
    .social-contact .social-link {
        transition: none;
    }
    
    .contact-info-card:hover,
    .contact-info-card:hover .contact-icon {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .contact-info-card,
    .contact-form-container,
    .contact-details {
        background: #1a1a1a;
        border-color: #333;
        color: #e0e0e0;
    }
    
    .contact-info-card h3,
    .details-content h2,
    .form-header h2 {
        color: #ffffff;
    }
    
    .contact-info-card p,
    .details-description,
    .form-header p {
        color: #b0b0b0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #2a2a2a;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--accent-color);
    }
}
/* FAQ Contact Section */
/* FAQ Contact Section - Fixed Styles */
.faq-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 100%);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.faq-content > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quick-faq {
    margin-bottom: 2.5rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h4::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.faq-content .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.quick-contact {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 140px;
}

.quick-contact h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.quick-contact > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    min-height: 120px;
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
    background: var(--bg-white);
}

.quick-link.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.quick-link.phone:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

.quick-link.email:hover {
    border-color: #EA4335;
    background: rgba(234, 67, 53, 0.05);
}

.quick-link.calendar:hover {
    border-color: #4285F4;
    background: rgba(66, 133, 244, 0.05);
}

.quick-link i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.quick-link.whatsapp i {
    color: #25D366;
}

.quick-link.phone i {
    color: var(--accent-color);
}

.quick-link.email i {
    color: #EA4335;
}

.quick-link.calendar i {
    color: #4285F4;
}

.quick-link span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Responsive Design for FAQ Section */
@media (max-width: 1024px) {
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quick-contact {
        position: static;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-contact-section {
        padding: 60px 0;
    }
    
    .faq-content h2,
    .quick-contact h2 {
        font-size: 1.8rem;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .quick-link {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-content h2,
    .quick-contact h2 {
        font-size: 1.5rem;
    }
    
    .faq-content > p,
    .quick-contact > p {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .quick-contact {
        padding: 2rem 1.5rem;
    }
    
    .quick-link i {
        font-size: 2rem;
    }
    
    .quick-link span {
        font-size: 0.9rem;
    }
}
}