/*
Theme Name: 3NG Company Profile
Theme URI: https://3ng.com
Author: PT Elang Nusantara Gemilang
Author URI: https://3ng.com
Description: Custom WordPress theme for PT Elang Nusantara Gemilang showcasing company profile, services, team, and projects with professional industrial design
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 3ng-theme
Tags: company, corporate, industrial, responsive, custom-colors
*/

/* CSS Variables for Design System */
:root {
    /* Brand Colors */
    --color-primary: #D32F2F;
    --color-secondary: #FF5722;
    --color-gray: #757575;
    --color-gray-light: #BDBDBD;
    --color-white: #FFFFFF;
    --color-black: #212121;
    
    /* Typography */
    --font-primary: 'Roboto', 'Arial', sans-serif;
    --font-size-base: 16px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-small: 0.875rem;
    
    /* Spacing System (8px base) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 72px;
    
    /* Transitions */
    --transition-speed: 0.3s;
    --transition-fast: 0.2s;
    --transition-slow: 0.4s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--color-secondary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
    margin-bottom: var(--spacing-sm);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* Header Styles - Enhanced Modern Design */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid rgba(211, 47, 47, 0.1);
}

.site-header.sticky {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.site-header.sticky .header-content {
    padding: 18px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.site-logo-text:hover {
    color: var(--color-secondary);
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo-link img,
.custom-logo {
    max-height: 45px;
    width: auto;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.custom-logo-link:hover img {
    transform: scale(1.05);
}

/* Responsive logo size */
@media (min-width: 768px) {
    .custom-logo-link img,
    .custom-logo {
        max-height: 50px;
    }
}

@media (min-width: 1024px) {
    .custom-logo-link img,
    .custom-logo {
        max-height: 55px;
    }
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    position: relative;
    width: 44px;
    height: 44px;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    position: relative;
    transition: all var(--transition-speed) ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    transition: all var(--transition-speed) ease;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-md);
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--color-black);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-speed) ease;
    min-height: 44px;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast) ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: calc(100% - 32px);
}

.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    color: var(--color-primary);
    font-weight: 700;
}

.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after {
    width: calc(100% - 32px);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-gray-light);
    }
    
    .nav-menu a {
        padding: var(--spacing-sm);
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* Testimonials Section - Elegant Carousel */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF0F0 50%, #FFE5E5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(211, 47, 47, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 87, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.2), transparent);
}
}

.testimonials-section .section-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.testimonials-section .section-description {
    text-align: center;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    border-radius: 24px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.testimonial-quote {
    color: var(--color-primary);
    opacity: 0.2;
    margin-bottom: 30px;
}

.testimonial-quote svg {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-black);
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 5px;
}

.author-position {
    font-size: 1rem;
    color: var(--color-gray);
    margin: 0;
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: var(--color-secondary);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

/* Navigation Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--color-primary);
}

.testimonial-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-position {
        font-size: 0.9rem;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Footer Styles - Modern & Professional */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), #FFB300);
}

/* Footer Top */
.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* Footer About Column */
.footer-about {
    padding-right: 30px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-contact svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    text-align: center;
}

.footer-copyright strong {
    color: #ffffff;
    font-weight: 600;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

/* Tablet Responsive */
@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}
        padding-bottom: 40px;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
}

/* Utility Classes - Enhanced Modern Design */
.button,
.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 48px;
    min-width: 48px;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 10;
}

.button::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button:hover::before,
.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.button:hover,
.cta-button:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
}

.button:focus,
.cta-button:focus {
    outline: 3px solid rgba(211, 47, 47, 0.3);
    outline-offset: 3px;
}

/* Main Content */
.site-main {
    min-height: 60vh;
}

/* Responsive Typography */
@media (max-width: 767px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.25rem;
        --font-size-base: 14px;
    }
    
    body {
        font-size: 14px;
    }
}

/* ========================================
   Front Page / Home Page Styles
   ======================================== */

/* Hero Section - Enhanced Modern Design */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(211, 47, 47, 0.4) 50%, rgba(255, 87, 34, 0.4) 100%),
        url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&q=80') center/cover no-repeat;
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Animated gradient background */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

/* Floating geometric shapes */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.hero-logo {
    margin-bottom: var(--spacing-lg);
    animation: fadeInDown 1s ease-out, pulse 2s ease-in-out 1s infinite;
}

.hero-logo img,
.hero-logo .custom-logo {
    max-width: 350px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out both;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #ffe0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    margin-top: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta .cta-button {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 18px 56px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.hero-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta .cta-button:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section - Below Hero */
.features-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.feature-card {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    padding: var(--spacing-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:last-child {
    border-right: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(255, 87, 34, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

/* Highlight card (middle) with brand orange color */
.feature-highlight {
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-highlight .feature-icon {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.feature-highlight .feature-title {
    color: var(--color-white);
}

.feature-highlight .feature-description {
    color: var(--color-white);
    opacity: 0.95;
}

.feature-highlight:hover {
    box-shadow: 0 25px 70px rgba(255, 87, 34, 0.4);
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(211, 47, 47, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 87, 34, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(211, 47, 47, 0.3);
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--color-secondary);
}

.feature-highlight:hover .feature-title {
    color: var(--color-white);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Desktop: 3 columns side by side */
@media (min-width: 768px) {
    .features-section {
        margin-top: -80px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .feature-icon {
        margin-bottom: var(--spacing-md);
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .features-section {
        margin-top: -100px;
    }
    
    .feature-card {
        padding: 48px 32px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .features-section {
        margin-top: 0;
        padding: 20px 0;
    }
    
    .features-section .container {
        padding: 0 16px;
    }
    
    .features-grid {
        border-radius: 8px;
        gap: 0;
    }
    
    .feature-card {
        padding: 32px 24px;
        flex-direction: row;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .feature-card:last-child {
        border-bottom: none;
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Home Team Section - Enhanced Modern Design */
.home-team-section {
    padding: 40px 0 var(--spacing-xl) 0;
    background: #ffffff;
    position: relative;
}

/* Home Services Section - Grid Layout (3 top, 2 bottom) */
.home-services-section {
    padding: 80px 0 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.home-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='1' opacity='0.15'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='1' opacity='0.15'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M12 1v6m0 6v6'%3E%3C/path%3E%3Cpath d='m4.93 4.93 4.24 4.24m5.66 5.66 4.24 4.24'%3E%3C/path%3E%3Cpath d='M1 12h6m6 0h6'%3E%3C/path%3E%3Cpath d='m4.93 19.07 4.24-4.24m5.66-5.66 4.24-4.24'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='1' opacity='0.15'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'%3E%3C/polygon%3E%3Cpolyline points='2 17 12 22 22 17'%3E%3C/polyline%3E%3Cpolyline points='2 12 12 17 22 12'%3E%3C/polyline%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='1' opacity='0.15'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'%3E%3C/path%3E%3C/svg%3E");
    background-position: 0 0, 40px 40px, 80px 0, 120px 40px;
    background-size: 80px 80px;
    background-repeat: repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.home-services-section > .container {
    position: relative;
    z-index: 1;
}

.services-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 60px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(211, 47, 47, 0.15);
}

.service-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(255, 87, 34, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.4s ease;
    position: relative;
}

.service-icon-box::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-box:hover .service-icon-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    transform: scale(1.1) rotate(10deg);
}

.service-icon-image-box {
    padding: 0 !important;
    overflow: hidden;
}

.service-icon-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.service-box:hover .service-icon-box::after {
    opacity: 0.3;
    animation: pulse-ring 1.5s ease-out infinite;
}

.service-icon-box svg {
    width: 50px;
    height: 50px;
    transition: transform 0.4s ease;
}

.service-box:hover .service-icon-box svg {
    transform: scale(1.1);
}

.service-box-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-box:hover .service-box-title {
    color: var(--color-primary);
}

.service-box-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin: 0;
}

/* Desktop: 3 columns, special layout for bottom row */
@media (min-width: 768px) {
    .services-grid-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    /* Row 1: Items 1-3 (full width each) */
    /* Row 2: Item 4 (left), Item 5 (center), Item 6/button (right) */
    .service-box:nth-child(4) {
        grid-column: 1 / 2;
    }
    
    .service-box:nth-child(5) {
        grid-column: 2 / 3;
    }
    
    .service-box:nth-child(6) {
        grid-column: 3 / 4;
    }
}

/* Show More Box Styles - Pure Button Only */
.service-more-box {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.service-more-box:hover {
    transform: none;
    border: none;
    box-shadow: none;
}

.service-more-box::before {
    display: none;
}

.service-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.service-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
}

.service-more-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.service-more-button:hover svg {
    transform: translateX(5px);
}

@media (min-width: 1024px) {
    .services-grid-layout {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .home-services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-grid-layout {
        gap: 25px;
    }
    
    .service-box {
        padding: 30px 20px;
    }
    
    .service-icon-box {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon-box svg {
        width: 40px;
        height: 40px;
    }
    
    .service-box-title {
        font-size: 1.25rem;
    }
    
    .service-box-desc {
        font-size: 0.9rem;
    }
}

/* Stagger animation */
.service-box:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.service-box:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.service-box:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.service-box:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.service-box:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Home Team Section */

.home-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 2.75rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.2rem;
    line-height: 1.8;
}

.team-preview {
    margin-bottom: var(--spacing-lg);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.2);
}

.team-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    position: relative;
}

.team-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-card-image::after {
    opacity: 1;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: grayscale(20%);
}

.team-card:hover .team-card-image img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.team-card-content {
    padding: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,1) 100%);
}

.team-member-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.team-card:hover .team-member-name {
    color: var(--color-primary);
}

.team-member-position {
    font-size: 1.05rem;
    color: var(--color-gray);
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.team-cta {
    text-align: center;
    margin-top: 50px;
}

.team-cta .button {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%) !important;
    color: var(--color-white) !important;
    padding: 14px 36px !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* Responsive Grid - Desktop: 3 columns */
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Responsive Styles for Front Page */
@media (max-width: 767px) {
    .hero-section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        padding: var(--spacing-sm);
    }
    
    .hero-logo img,
    .hero-logo .custom-logo {
        max-width: 200px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta .cta-button {
        font-size: 1rem;
        padding: 14px 36px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-tagline {
        font-size: 1.75rem;
    }
    
    .hero-logo img,
    .hero-logo .custom-logo {
        max-width: 250px;
    }
}

/* Desktop enhancements */
@media (min-width: 1024px) {
    .hero-section {
        padding: 120px 0;
    }
    
    .hero-tagline {
        font-size: 2.5rem;
    }
}

/* ========================================
   About Page Styles - 2 Sections Layout
   ======================================== */

.about-page-main {
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Breadcrumb Section */
.page-breadcrumb {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: #FFE0B2;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Section 1: About Us */
.about-us-section {
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M12 1v6m0 6v6'%3E%3C/path%3E%3Cpath d='m4.93 4.93 4.24 4.24m5.66 5.66 4.24 4.24'%3E%3C/path%3E%3Cpath d='M1 12h6m6 0h6'%3E%3C/path%3E%3Cpath d='m4.93 19.07 4.24-4.24m5.66-5.66 4.24-4.24'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'%3E%3C/polygon%3E%3Cpolyline points='2 17 12 22 22 17'%3E%3C/polyline%3E%3Cpolyline points='2 12 12 17 22 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: 0 0, 30px 30px, 60px 0;
    background-size: 60px 60px;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.about-us-section > .container {
    position: relative;
    z-index: 1;
}

.about-us-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 70px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-us-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px 16px 0 0;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 20px;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.about-us-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
    text-align: justify;
}

.about-us-text p {
    margin-bottom: 20px;
}

/* Section 2: Vision & Mission */
.vision-mission-section {
    padding: 0px 0 50px;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M12 1v6m0 6v6'%3E%3C/path%3E%3Cpath d='m4.93 4.93 4.24 4.24m5.66 5.66 4.24 4.24'%3E%3C/path%3E%3Cpath d='M1 12h6m6 0h6'%3E%3C/path%3E%3Cpath d='m4.93 19.07 4.24-4.24m5.66-5.66 4.24-4.24'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'%3E%3C/polygon%3E%3Cpolyline points='2 17 12 22 22 17'%3E%3C/polyline%3E%3Cpolyline points='2 12 12 17 22 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: 0 0, 30px 30px, 60px 0;
    background-size: 60px 60px;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.vision-mission-section > .container {
    position: relative;
    z-index: 1;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-col {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.vm-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px 16px 0 0;
}

.vm-col:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
}

.vm-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.vm-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.vm-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
    text-align: justify;
}

.vm-text p {
    margin-bottom: 18px;
}

/* Remove WordPress block styling from vision/mission content */
.vm-text *,
.vm-text *::before,
.vm-text *::after {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.vm-text p {
    margin-bottom: 18px !important;
}

.vm-text ul {
    list-style: disc !important;
    padding-left: 25px !important;
    margin-bottom: 18px !important;
}

.vm-text ul li {
    margin-bottom: 12px !important;
    line-height: 1.8 !important;
}

/* Vision List */
.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
}

.vision-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.vision-list li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 8px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Tablet Responsive */
@media (max-width: 1023px) {
    .page-main-title {
        font-size: 2.5rem;
    }
    
    .about-us-section {
        padding: 80px 0 60px;
    }
    
    .about-us-content {
        padding: 50px 40px;
    }
    
    .vision-mission-section {
        padding: 60px 0 80px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vm-col {
        padding: 45px 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .page-breadcrumb {
        padding: 50px 0;
    }
    
    .page-main-title {
        font-size: 2rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.9rem;
    }
    
    .about-us-section {
        padding: 60px 0 50px;
    }
    
    .about-us-content {
        padding: 40px 30px;
    }
    
    .about-section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .about-us-text,
    .vm-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .vision-mission-section {
        padding: 50px 0 60px;
    }
    
    .vm-col {
        padding: 40px 30px;
    }
    
    .vm-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
    
    .vision-list li {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

/* Section 3: Company Legality - Timeline Style */
.company-legality-section {
    padding: 50px 0 100px;
    background: #2d2d2d;
    position: relative;
}

.legality-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legality-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.legality-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.legality-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.legality-item:last-child {
    margin-bottom: 0;
}

.legality-dot {
    position: absolute;
    left: -48px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    border: 4px solid #2d2d2d;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.legality-item:hover .legality-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(211, 47, 47, 0.3);
}

.legality-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 35px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.legality-item:hover .legality-content {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.legality-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.legality-details {
    color: #cccccc;
}

.legality-details p {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.legality-number {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.legality-date {
    color: #FF5722;
    font-weight: 500;
}

.legality-notaris {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
}

.legality-info {
    color: #aaaaaa;
    font-style: italic;
}

/* Tablet Responsive */
@media (max-width: 1023px) {
    .legality-main-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .legality-timeline {
        padding-left: 50px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .company-legality-section {
        padding: 60px 0 80px;
    }
    
    .legality-main-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .legality-timeline {
        padding-left: 40px;
    }
    
    .legality-item {
        padding-left: 30px;
        margin-bottom: 50px;
    }
    
    .legality-dot {
        left: -38px;
        width: 20px;
        height: 20px;
    }
    
    .legality-content {
        padding: 25px 25px;
    }
    
    .legality-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .legality-details p {
        font-size: 0.95rem;
    }
}

/* ========================================
   Service Page Styles - Modern Design
   ======================================== */

.service-page-main {
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Service Breadcrumb with Different Image */
.service-breadcrumb::before {
    background: url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?w=1920&q=80') center/cover;
    opacity: 0.15;
}

/* Services Detail Section */
.services-detail-section {
    padding: 50px 0 100px;
    position: relative;
    overflow: hidden;
}

.services-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M12 1v6m0 6v6'%3E%3C/path%3E%3Cpath d='m4.93 4.93 4.24 4.24m5.66 5.66 4.24 4.24'%3E%3C/path%3E%3Cpath d='M1 12h6m6 0h6'%3E%3C/path%3E%3Cpath d='m4.93 19.07 4.24-4.24m5.66-5.66 4.24-4.24'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'%3E%3C/polygon%3E%3Cpolyline points='2 17 12 22 22 17'%3E%3C/polyline%3E%3Cpolyline points='2 12 12 17 22 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: 0 0, 30px 30px, 60px 0;
    background-size: 60px 60px;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.services-detail-section > .container {
    position: relative;
    z-index: 1;
}

.services-detail-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-detail-section .service-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services-detail-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.services-detail-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
}

.services-detail-section .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.services-detail-section .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.services-detail-section .service-icon svg {
    color: #ffffff;
    width: 40px;
    height: 40px;
}

.services-detail-section .service-icon-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 3px;
    transition: all 0.3s ease;
}

.services-detail-section .service-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
}

.services-detail-section .service-card:hover .service-icon-image {
    transform: scale(1.1) rotate(5deg);
}

.services-detail-section .service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-detail-section .service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1023px) {
    .services-detail-section {
        padding: 60px 0 80px;
    }
    
    .services-detail-section .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .services-detail-section {
        padding: 50px 0 60px;
    }
    
    .services-detail-section .service-card {
        padding: 35px 30px;
    }
    
    .services-detail-section .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .services-detail-section .service-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .services-detail-section .service-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .services-detail-section .service-description {
        font-size: 0.95rem;
    }
}

/* ========================================
   Team Page Styles - Modern Design
   ======================================== */

.team-page-main {
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Team Breadcrumb with Different Image */
.team-breadcrumb::before {
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80') center/cover;
    opacity: 0.15;
}

/* Team Detail Section */
.team-detail-section {
    padding: 50px 0 100px;
    position: relative;
    overflow: hidden;
}

.team-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M12 1v6m0 6v6'%3E%3C/path%3E%3Cpath d='m4.93 4.93 4.24 4.24m5.66 5.66 4.24 4.24'%3E%3C/path%3E%3Cpath d='M1 12h6m6 0h6'%3E%3C/path%3E%3Cpath d='m4.93 19.07 4.24-4.24m5.66-5.66 4.24-4.24'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='1' opacity='0.3'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'%3E%3C/polygon%3E%3Cpolyline points='2 17 12 22 22 17'%3E%3C/polyline%3E%3Cpolyline points='2 12 12 17 22 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: 0 0, 30px 30px, 60px 0;
    background-size: 60px 60px;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.team-detail-section > .container {
    position: relative;
    z-index: 1;
}

.team-detail-section .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-detail-section .team-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-detail-section .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.team-detail-section .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
}

.team-detail-section .team-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-detail-section .team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-detail-section .team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-detail-section .team-card-content {
    padding: 30px 25px;
    text-align: center;
}

.team-detail-section .team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.team-detail-section .team-member-position {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1023px) {
    .team-detail-section {
        padding: 50px 0 80px;
    }
    
    .team-detail-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .team-detail-section {
        padding: 50px 0 60px;
    }
    
    .team-detail-section .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-detail-section .team-card-image {
        height: 300px;
    }
    
    .team-detail-section .team-member-name {
        font-size: 1.25rem;
    }
    
    .team-detail-section .team-member-position {
        font-size: 0.95rem;
    }
}
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--color-primary);
}

.page-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 0;
}

/* About Sections */
.about-description,
.about-vision,
.about-mission,
.about-company-info,
.about-legal {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-description h2,
.about-vision h2,
.about-mission h2,
.about-company-info h2,
.about-legal h2 {
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-gray-light);
}

/* Company Description */
.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Vision Statement */
.vision-statement {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-black);
    font-weight: 500;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.05), rgba(255, 87, 34, 0.05));
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
    margin: 0;
}

/* Mission Statements */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.mission-list li:last-child {
    margin-bottom: 0;
}

.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-list li::after {
    content: '✓';
    position: absolute;
    left: 7px;
    top: 8px;
    color: var(--color-white);
    font-weight: bold;
    font-size: 14px;
}

/* Company Information Grid */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.info-item {
    padding: var(--spacing-md);
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.info-item h3 {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 1.25rem;
    color: var(--color-black);
    font-weight: 700;
    margin: 0;
}

/* Legal Information */
.legal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.legal-item {
    padding: var(--spacing-md);
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid var(--color-gray-light);
}

.legal-item h3 {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.legal-value {
    font-size: 1.125rem;
    color: var(--color-black);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin: 0;
}

/* Responsive Styles for About Page */
@media (min-width: 768px) {
    .company-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .legal-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Mobile Responsive Typography */
@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .about-description h2,
    .about-vision h2,
    .about-mission h2,
    .about-company-info h2,
    .about-legal h2 {
        font-size: 1.5rem;
    }
    
    .about-description,
    .about-vision,
    .about-mission,
    .about-company-info,
    .about-legal {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .about-content p,
    .mission-list li {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .vision-statement {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }
    
    .info-value {
        font-size: 1.125rem;
    }
    
    .legal-value {
        font-size: 1rem;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .page-title {
        font-size: 2.25rem;
    }
    
    .about-description h2,
    .about-vision h2,
    .about-mission h2,
    .about-company-info h2,
    .about-legal h2 {
        font-size: 1.625rem;
    }
}

/* Ensure minimum font size for readability */
@media (max-width: 767px) {
    .about-page {
        font-size: 14px;
    }
    
    .about-page h1,
    .about-page h2,
    .about-page h3,
    .about-page p,
    .about-page li {
        min-font-size: 14px;
    }
}

/* ========================================
   Service Page Styles
   ======================================== */

.service-page {
    max-width: 1200px;
    margin: 0 auto;
}

.service-page .page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--color-primary);
}

.service-page .page-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-page .page-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin: 0;
}

/* Services Grid - 2x2 on Desktop, Single Column on Mobile */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Service Card Styles - Enhanced Modern Design */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(211, 47, 47, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.25);
    border-color: var(--color-primary);
}

/* Service Icon - Enhanced with 3D effect */
.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    animation: pulse-ring 1.5s ease-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(211, 47, 47, 0.5);
}

.service-icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Service Title - Enhanced */
.service-title {
    font-size: 1.75rem;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    text-align: center;
    font-weight: 800;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.service-card:hover .service-title {
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Service Description - Enhanced */
.service-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-gray);
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--color-black);
}

/* Desktop: 2x2 Grid Layout */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Large Desktop: Wider Gap */
@media (min-width: 1024px) {
    .services-grid {
        gap: 40px;
    }
    
    .service-card {
        padding: 40px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .service-page .page-title {
        font-size: 2rem;
    }
    
    .service-page .page-description {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-page .page-title {
        font-size: 2.25rem;
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
}

/* Ensure minimum font size for readability on mobile */
@media (max-width: 767px) {
    .service-page {
        font-size: 14px;
    }
}

/* ========================================
   Team Page Styles
   ======================================== */

.team-page {
    max-width: 1200px;
    margin: 0 auto;
}

.team-page .page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--color-primary);
}

.team-page .page-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.page-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin: 0;
}

/* Team page uses the same team-grid and team-card styles defined in Front Page section */
/* Desktop: 3 columns, Mobile: 1 column - already defined above */

/* Mobile Responsive Styles for Team Page */
@media (max-width: 767px) {
    .team-page .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .team-page .page-title {
        font-size: 2.25rem;
    }
}

/* ========================================
   Project Archive Page Styles
   ======================================== */

/* Project Breadcrumb */
.project-breadcrumb::before {
    background: url('https://images.unsplash.com/photo-1565008576549-57569a49371d?w=1920&q=80') center/cover;
    opacity: 0.15;
}

/* Projects Archive Section */
.projects-archive-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.projects-archive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23999999' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

.projects-archive-section .container {
    position: relative;
    z-index: 1;
}

/* Projects Grid - 3 columns on Desktop, Single Column on Mobile */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Project Card Styles - Enhanced Modern Design */
.project-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(211, 47, 47, 0.1);
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.25);
    border-color: var(--color-primary);
}

.project-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Project Card Image - Enhanced */
.project-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    position: relative;
}

.project-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover .project-card-image::before {
    opacity: 1;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) contrast(1);
}

.project-card:hover .project-card-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Project Placeholder - Enhanced */
.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.08) 0%, rgba(255, 87, 34, 0.08) 100%);
    color: var(--color-gray);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.project-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

.project-placeholder svg {
    margin-bottom: var(--spacing-md);
    opacity: 0.4;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.project-card:hover .project-placeholder svg {
    opacity: 0.7;
    transform: scale(1.1);
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    z-index: 1;
}

/* Project Card Content - Enhanced */
.project-card-content {
    padding: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,1) 100%);
    position: relative;
}

.project-title {
    font-size: 1.4rem;
    color: var(--color-black);
    margin: 0;
    font-weight: 800;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

.project-card:hover .project-title {
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* No Projects Message */
.no-projects {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.03) 0%, rgba(255, 87, 34, 0.03) 100%);
    border-radius: 20px;
    margin-bottom: var(--spacing-xl);
    border: 2px dashed rgba(211, 47, 47, 0.2);
}

.no-projects svg {
    color: rgba(211, 47, 47, 0.3);
    margin-bottom: 20px;
}

.no-projects p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin: 0;
    font-weight: 500;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.pagination .nav-links {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-fast) ease;
    font-weight: 600;
}

.pagination a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.pagination .current {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    font-weight: 700;
}

.pagination .dots {
    border: none;
    background: none;
    color: var(--color-gray);
}

/* Desktop: 3-column Grid Layout */
@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Large Desktop: Wider Gap */
@media (min-width: 1024px) {
    .projects-grid {
        gap: 40px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .projects-grid {
        gap: var(--spacing-md);
    }
    
    .project-card-content {
        padding: var(--spacing-sm);
    }
    
    .project-title {
        font-size: 1.125rem;
    }
    
    .pagination a,
    .pagination span {
        min-width: 40px;
        min-height: 40px;
        padding: var(--spacing-xs);
        font-size: 0.875rem;
    }
    
    .no-projects {
        padding: 60px 20px;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   Enhanced Modern Design Elements
   ======================================== */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* ========================================
   Single Project Page Styles
   ======================================== */

/* Project Detail Breadcrumb */
.project-detail-breadcrumb::before {
    background: url('https://images.unsplash.com/photo-1565008576549-57569a49371d?w=1920&q=80') center/cover;
    opacity: 0.15;
}

/* Project Content Section */
.project-content-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.project-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23999999' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

.project-content-section .container {
    position: relative;
    z-index: 1;
}

/* Project Detail Article */
.project-detail {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Project Featured Image */
.project-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Project Content */
.project-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.project-content h1,
.project-content h2,
.project-content h3 {
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.project-content h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 15px;
}

.project-content h2 {
    font-size: 2rem;
    position: relative;
    padding-left: 20px;
}

.project-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.project-content h3 {
    font-size: 1.5rem;
}

.project-content p {
    margin-bottom: 20px;
}

.project-content ul,
.project-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.project-content li {
    margin-bottom: 10px;
}

.project-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.project-content a:hover {
    color: var(--color-secondary);
}

/* Project Navigation */
.project-navigation {
    text-align: center;
    margin-top: 40px;
}

.back-to-projects {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.back-to-projects:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    color: #ffffff;
}

.back-to-projects svg {
    transition: transform 0.3s ease;
}

.back-to-projects:hover svg {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .project-detail {
        padding: 30px 20px;
    }
    
    .project-content {
        font-size: 1rem;
    }
    
    .project-content h1 {
        font-size: 2rem;
    }
    
    .project-content h2 {
        font-size: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.25rem;
    }
}

/* Page Transitions */
.site-main {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Effect for Cards */
.about-description,
.about-vision,
.about-mission,
.about-company-info,
.about-legal {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Enhanced Page Headers */
.page-header {
    position: relative;
    padding-bottom: var(--spacing-lg);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

/* Animated Underline for Links */
.footer-menu a,
.nav-menu a {
    position: relative;
}

/* Scroll to Top Button (if added) */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-size: 1000px 100%;
}

/* Hover Glow Effect */
.service-card:hover,
.team-card:hover,
.project-card:hover {
    box-shadow: 
        0 20px 60px rgba(211, 47, 47, 0.25),
        0 0 0 1px rgba(211, 47, 47, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Parallax Effect for Sections */
@media (min-width: 1024px) {
    .home-team-section,
    .service-page,
    .about-page {
        position: relative;
    }
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid rgba(211, 47, 47, 0.5);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Animation for Icons */
@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-icon {
    animation: float-icon 3s ease-in-out infinite;
}

/* Stagger Animation for Cards */
.team-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.team-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.team-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.service-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.service-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.service-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.service-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Ripple Effect on Click */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-section,
    .cta-button,
    .button {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Breadcrumb */
.contact-breadcrumb::before {
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80') center/cover;
    opacity: 0.15;
}

/* Contact Info Section */
.contact-info-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23999999' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

.contact-info-section .container {
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.2);
    border-color: var(--color-primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin: 0;
}

.contact-info-text a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--color-primary);
}

.copy-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.copy-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.copy-email-btn svg {
    flex-shrink: 0;
}

/* Map Section */
.map-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    display: block;
}

.map-address-note {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-address-note p {
    margin: 5px 0;
    color: var(--color-gray);
    font-size: 1rem;
}

.map-address-note p strong {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    gap: 15px;
}

.newsletter-input-group svg:first-child {
    color: var(--color-gray);
    flex-shrink: 0;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 10px 0;
    color: var(--color-black);
}

.newsletter-input::placeholder {
    color: var(--color-gray-light);
}

.newsletter-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-button svg {
    transition: transform 0.3s ease;
}

.newsletter-button:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
    }
    
    .newsletter-input {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-button {
        width: 100%;
        justify-content: center;
    }
}
