/**
 * Custom CSS for Ikon HR Theme - PINK EDITION
 * Additional styles and overrides
 *
 * @package Ikon_HR_Theme
 * @version 2.0.0
 */

/* ========================================
   PINK THEME CSS VARIABLES
   ======================================== */
:root {
    --primary-pink: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #EC407A;
    --light-pink: #FCE4EC;
    --black: #111111;
    --white: #FFFFFF;
}



/* ========================================
   HEADER LOGO STYLING
   ======================================== */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo-link {
    display: inline-block;
}

.header-logo {
    max-width: 150px;
    width: auto;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

/* ========================================
   FOOTER LOGO STYLING
   ======================================== */
.site-footer .footer-brand {
    max-width: 280px;
}

.footer-logo-wrapper {
    margin-bottom: 15px;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-img {
    max-width: 120px !important;
    width: 120px !important;
    height: auto !important;
    max-height: 40px !important;
    object-fit: contain !important;
}

.footer-site-name {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Override WordPress custom logo defaults */
.site-footer .custom-logo-link,
.site-footer .custom-logo {
    max-width: 120px !important;
    height: auto !important;
}

/* ========================================
   RESPONSIVE IMAGES
   ======================================== */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-left {
    float: left;
    margin: 0 20px 20px 0;
}

.img-right {
    float: right;
    margin: 0 0 20px 20px;
}

.img-center {
    display: block;
    margin: 20px auto;
}

/* Page Section Images */
.section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Mobile responsive images */
@media (max-width: 768px) {
    .img-left,
    .img-right {
        float: none;
        margin: 20px auto;
        display: block;
    }
    
    .header-logo {
        max-width: 120px;
        max-height: 40px;
    }
    
    .footer-logo-img {
        max-width: 100px !important;
        max-height: 35px !important;
    }
}

/* ========================================
   SELECTION COLOR
   ======================================== */
::selection {
    background: var(--primary-pink);
    color: var(--white);
}





::-moz-selection {
    background: var(--primary-pink);
    color: var(--white);
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-pink);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   ENHANCED ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary-pink); }
    50% { box-shadow: 0 0 20px var(--primary-pink), 0 0 30px var(--primary-light); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes flipIn {
    from { opacity: 0; transform: perspective(400px) rotateY(90deg); }
    to { opacity: 1; transform: perspective(400px) rotateY(0); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease forwards;
}

.animate-pulse:hover {
    animation: pulse 0.3s ease;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ========================================
   CUSTOM SCROLLBAR - PINK THEME
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-pink);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   SELECTION STYLES - PINK THEME
   ======================================== */
::selection {
    background: var(--primary-pink);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-pink);
    color: var(--white);
}

/* ========================================
   LOADING SPINNER - PINK THEME
   ======================================== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-pink);
    border-top-color: var(--primary-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 500;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.toast-success {
    background: var(--success);
}

.toast-error {
    background: var(--error);
}

.toast-info {
    background: var(--info);
}

.toast-warning {
    background: var(--warning);
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--gray-700);
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

/* ========================================
   JOB FILTERS
   ======================================== */
.job-filters {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-group label {
    font-weight: 500;
    color: var(--gray-700);
}

/* ========================================
   DASHBOARD SPECIFIC
   ======================================== */
.dashboard-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.dashboard-widget-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-widget-body {
    padding: var(--spacing-lg);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

.dashboard-table tr:hover {
    background: var(--gray-50);
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-closed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.status-draft {
    background: rgba(100, 116, 139, 0.1);
    color: var(--gray-500);
}

/* ========================================
   FILE UPLOAD
   ======================================== */
.file-upload {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.file-upload:hover,
.file-upload.dragover {
    border-color: var(--primary-pink);
    background: rgba(233, 30, 99, 0.05);
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: var(--spacing-md);
}

.file-upload-text {
    color: var(--gray-600);
}

.file-upload-text span {
    color: var(--primary-pink);
    font-weight: 600;
}

/* ========================================
   TABS
   ======================================== */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--spacing-xl);
}

.tab-btn {
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-pink);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.tab-btn:hover {
    color: var(--primary-pink);
}

.tab-btn.active {
    color: var(--primary-pink);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ========================================
   ACCORDION
   ======================================== */
.accordion {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: var(--spacing-lg);
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-header h4 {
    margin: 0;
    font-size: 1rem;
}

.accordion-icon {
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-item.active .accordion-body {
    padding: var(--spacing-lg);
    max-height: 500px;
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-bar-fill.success {
    background: var(--success);
}

.progress-bar-fill.warning {
    background: var(--warning);
}

/* ========================================
   AVATAR
   ======================================== */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-sm {
    width: 32px;
    height: 32px;
}

.avatar-lg {
    width: 60px;
    height: 60px;
}

.avatar-xl {
    width: 100px;
    height: 100px;
}

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    border: 2px solid var(--white);
    margin-left: -10px;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .btn,
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */
.sr-only:focus {
    position: absolute;
    width: auto;
    height: auto;
    padding: var(--spacing-sm) var(--spacing-md);
    margin: 0;
    overflow: visible;
    clip: auto;
    background: var(--white);
    border: 2px solid var(--primary-color);
    z-index: 9999;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --gray-500: #000000;
    }
    
    .btn {
        border-width: 3px;
    }
}

/* ========================================
   ENHANCED ANIMATION UTILITY CLASSES
   ======================================== */
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.6s ease forwards; }
.animate-slideLeft { animation: slideInLeft 0.6s ease forwards; }
.animate-slideRight { animation: slideInRight 0.6s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.5s ease forwards; }
.animate-flipIn { animation: flipIn 0.6s ease forwards; }
.animate-bounce { animation: bounce 1s ease infinite; }
.animate-pulse { animation: pulse 2s ease infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }
.animate-heartbeat { animation: heartbeat 1.5s ease infinite; }
.animate-rotate { animation: rotate 2s linear infinite; }
.animate-shake:hover { animation: shake 0.5s ease; }

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect classes */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

.hover-scale { transition: transform 0.3s ease; }
.hover-scale:hover { transform: scale(1.05); }

.hover-glow { transition: box-shadow 0.3s ease; }
.hover-glow:hover { box-shadow: 0 0 20px var(--primary-pink); }

.hover-rotate { transition: transform 0.3s ease; }
.hover-rotate:hover { transform: rotate(5deg); }

/* Gradient animated backgrounds */
.gradient-animated {
    background: linear-gradient(-45deg, var(--primary-pink), var(--primary-dark), var(--primary-light), #ff6b9d);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Extra Large screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large screens (1200px and below) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Medium screens / Tablets (992px and below) */
@media (max-width: 992px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hero adjustments */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Grid adjustments */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Office cards */
    .office-card {
        padding: var(--spacing-xl) !important;
    }
    
    /* About grid */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Small screens / Landscape phones (768px and below) */
@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 2rem !important;
    }
    
    /* Page header */
    .page-header {
        padding: var(--spacing-2xl) 0 !important;
        margin-top: 70px !important;
    }
    
    /* Container padding */
    .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    /* Sections */
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    /* Grid adjustments for 2-column to 1-column */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Contact form grid */
    .contact-form [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Job cards */
    .job-card {
        padding: var(--spacing-lg);
    }
    
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-meta {
        flex-wrap: wrap;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Industries grid */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Form styles */
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: var(--spacing-md);
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Tabs */
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 auto;
        text-align: center;
    }
    
    /* Dashboard */
    .dashboard-sidebar {
        display: none;
    }
    
    .dashboard-main {
        width: 100%;
    }
    
    .dashboard-table {
        display: block;
        overflow-x: auto;
    }
    
    /* Quick contact section */
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Modal */
    .modal {
        width: 95%;
        margin: var(--spacing-md);
    }
    
    /* Office cards responsive */
    .office-card h3 {
        font-size: 1.25rem !important;
    }
    
    /* Hide elements on mobile */
    .hide-mobile {
        display: none !important;
    }
    
    /* Show elements only on mobile */
    .show-mobile {
        display: block !important;
    }
}

/* Extra small screens / Phones (480px and below) */
@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem !important;
    }
    
    /* Hero section */
    .hero-badge {
        font-size: 0.75rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Cards */
    .service-card,
    .job-card,
    .office-card {
        padding: var(--spacing-md) !important;
    }
    
    /* 4-column grids to 1-column */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    /* 2-column grids stay as 2 for small items */
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Buttons */
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.875rem;
    }
    
    /* Form inputs */
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    /* Contact icons smaller */
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
    }
    
    /* Emojis smaller */
    [style*="font-size: 3rem"] {
        font-size: 2rem !important;
    }
    
    [style*="font-size: 4rem"] {
        font-size: 2.5rem !important;
    }
    
    /* Quick contact */
    .quick-contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Accordion */
    .accordion-header h4 {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-column h4 {
        font-size: 1rem;
    }
    
    /* Modal */
    .modal-body,
    .modal-header,
    .modal-footer {
        padding: var(--spacing-md);
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: var(--spacing-md);
    }
    
    .form-input,
    .form-select {
        min-height: 44px;
    }
    
    /* Remove hover effects */
    .btn:hover {
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .btn:active {
        transform: scale(0.98);
    }
    
    .card:active {
        transform: scale(0.99);
    }
}

/* ========================================
   LANDSCAPE MOBILE ORIENTATION
   ======================================== */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
        max-width: 300px;
    }
}

/* ========================================
   FLOATING CONTACT BUTTONS (Mobile)
   ======================================== */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn i {
    font-size: 1.5rem;
    line-height: 1;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.phone {
    background: var(--primary-pink);
}

.floating-btn.email {
    background: #EA4335;
}

/* Hide floating buttons on desktop */
@media (min-width: 992px) {
    .floating-contact {
        display: none;
    }
}

/* ========================================
   LOADING STATES
   ======================================== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-title {
    height: 2em;
    width: 60%;
    margin-bottom: 1em;
}

.skeleton-image {
    height: 200px;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top i {
    font-size: 1.25rem;
    line-height: 1;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER LOGO TEXT (Fallback)
   ======================================== */
.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-pink);
    letter-spacing: 1px;
}

/* ========================================
   FOOTER CONTACT STYLING
   ======================================== */
.footer-contact .contact-office {
    margin-bottom: 10px;
}

.footer-contact .office-country {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact .office-country i {
    color: var(--primary-pink);
}

.footer-contact .office-country strong {
    color: var(--primary-pink);
    font-size: 1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-contact .contact-item i {
    width: 16px;
    color: var(--gray-500);
    flex-shrink: 0;
}

.footer-contact .contact-item a {
    color: var(--primary-pink);
    text-decoration: none;
}

.footer-contact .contact-item a:hover {
    text-decoration: underline;
}

.footer-contact .contact-item span {
    color: var(--gray-400);
}

/* ========================================
   FOOTER SOCIAL ICONS
   ======================================== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 1rem;
}

/* ========================================
   FOOTER HEADING WITH ICON
   ======================================== */
.footer-heading i {
    margin-right: 8px;
    color: var(--primary-pink);
}

