/* ============================================================
   RoyalCare Health LLC — Main Stylesheet
   Deep Lavender + Gold | Modern Healthcare Design
   ============================================================ */

:root {
    --primary: #7B5CF0;
    --primary-dark: #6344D9;
    --primary-light: #9F7AEA;
    --secondary: #FF6B9D;
    --accent: #FFC107;
    --blue: #4A90E2;
    --purple: #7B5CF0;
    --white: #FFFFFF;
    --black: #1A202C;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-700: #495057;
    --gray-900: #212529;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    --shadow: 0 4px 20px rgba(123,92,240,0.15);
    --shadow-lg: 0 10px 40px rgba(123,92,240,0.25);
    --shadow-soft: 0 2px 10px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
}

.header-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,191,166,0.2);
}

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

.header-top-left {
    display: flex;
    gap: 30px;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top a {
    color: var(--white);
}

.header-top a:hover {
    color: var(--accent);
}

.btn-request-staffing {
    background: var(--accent);
    color: var(--black);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(255,193,7,0.3);
}

.btn-request-staffing:hover {
    background: #E6A800;
    transform: translateY(-1px);
}

nav {
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(123,92,240,0.3);
}

.logo-icon::before {
    content: '♕';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 16px;
    color: var(--yellow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .main {
    font-size: 17px;
    color: var(--primary);
}

.logo-text .sub {
    font-size: 10px;
    color: var(--gray-700);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    font-size: 15px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow);
    font-size: 14px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    background: linear-gradient(135deg, #E0F7F4 0%, #F0FBFA 50%, #FFFFFF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123,92,240,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,107,157,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero:not(.hero-center) .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero.hero-center .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(123,92,240,0.15), rgba(159,122,234,0.15));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 2px solid rgba(123,92,240,0.3);
    box-shadow: 0 4px 12px rgba(123,92,240,0.15);
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: var(--primary);
    display: block;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--gray-700);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(123,92,240,0.25);
    border: 4px solid var(--white);
}

.quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #F8F9FA 100%);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 3;
    border: 3px solid var(--primary);
    animation: bounceIn 1s ease-out;
}

.quality-badge .icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.quality-badge .text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.btn {
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(123,92,240,0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123,92,240,0.4);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================================
   SECTIONS
   ============================================================ */

section {
    padding: 80px 0;
}

.features-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

.feature-card-horizontal {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-left: 5px solid var(--primary);
    border-top: 1px solid var(--gray-200);
}

.feature-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary);
}

.feature-card-horizontal .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(123,92,240,0.25);
}

.feature-card-horizontal h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.feature-card-horizontal p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Services Section with Background Image */
.services-with-background {
    background-image: url('../images/backgroud_home.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 20px;
    border-radius: 20px;
    position: relative;
}

.services-with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    z-index: 0;
}

.services-with-background .service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(123, 92, 240, 0.15);
}

.services-with-background .service-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(123, 92, 240, 0.25);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(123,92,240,0.3);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================================
   STAFF GRID
   ============================================================ */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.staff-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid var(--gray-200);
}

.staff-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.staff-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--gray-400);
}

.staff-info {
    padding: 20px;
    text-align: center;
}

.staff-info h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.staff-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.staff-rank {
    display: inline-block;
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-700);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
    background: var(--gray-50);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, #F8F9FA 100%);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 90px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-message {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    color: var(--primary-dark);
}

.author-info p {
    font-size: 14px;
    color: var(--gray-700);
}

.stars {
    color: var(--accent);
    font-size: 18px;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-900);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(123,92,240,0.15);
    transform: translateY(-1px);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

/* ============================================================
   FOOTER - MODERN DESIGN
   ============================================================ */

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123,92,240,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-col ul li a::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    color: var(--accent);
}

/* Footer Newsletter Form */
.footer-col form {
    margin-top: 20px;
}

.footer-col form input[type="email"] {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-col form input[type="email"]:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary);
    outline: none;
}

.footer-col form button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(123,92,240,0.3);
}

.footer-col form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123,92,240,0.4);
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(123,92,240,0.4);
}

.footer-social a:hover::before {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: var(--primary-light);
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Footer Contact Info Icons */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item span:first-child {
    font-size: 18px;
    color: var(--primary-light);
    margin-top: 2px;
}

/* Footer Quick Actions (Mobile Only) */
.footer-quick-actions {
    display: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(123,92,240,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(123,92,240,0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ============================================================
   ALERTS & MESSAGES
   ============================================================ */

.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.alert-success {
    background: #C6F6D5;
    color: #22543D;
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: #FED7D7;
    color: #742A2A;
    border-left: 4px solid var(--danger);
}

.alert-info {
    background: #BEE3F8;
    color: #2C5282;
    border-left: 4px solid var(--info);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a {
        color: var(--white);
        padding: 16px 24px;
        display: block;
        font-size: 16px;
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .nav-menu .btn-book {
        background: var(--accent);
        color: var(--black);
        margin: 10px 20px;
        text-align: center;
        border-radius: 8px;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10000;
    }
    
    .mobile-toggle span {
        width: 30px;
        height: 3px;
        background: var(--primary);
        border-radius: 10px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
    
    /* Mobile Overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }
    
    .mobile-overlay.active {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-image {
        order: -1;
    }

    .quality-badge {
        top: 10px;
        right: 10px;
        padding: 12px 16px;
    }
    
    .quality-badge .icon {
        font-size: 24px;
    }
    
    .quality-badge .text {
        font-size: 11px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card-horizontal {
        padding: 20px;
    }
    
    .feature-card-horizontal .icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .feature-card-horizontal h3 {
        font-size: 15px;
    }
    
    .feature-card-horizontal p {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }

    .services-grid,
    .staff-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 17px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .service-price {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-message {
        font-size: 13px;
    }

    .logo-text .main {
        font-size: 15px;
    }

    .logo-text .sub {
        font-size: 9px;
    }

    .header-top-left {
        flex-direction: column;
        gap: 5px;
        font-size: 11px;
    }
    
    .header-top {
        padding: 8px 0;
    }
    
    .btn-request-staffing {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    nav {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .banner-prev,
    .banner-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-dots {
        bottom: 15px;
    }
    
    .banner-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Homepage Mobile Adjustments */
    body.home-page .hero h1 {
        font-size: 28px;
    }
    
    body.home-page .hero p {
        font-size: 14px;
    }
    
    body.home-page .section-header h2 {
        font-size: 26px;
    }
    
    body.home-page .features-section {
        padding: 30px 0;
    }
    
    body.home-page section {
        padding: 35px 0;
    }
}

/* ============================================================
   BANNER SLIDER
   ============================================================ */

.banner-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.banner-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.5s ease-in-out;
    padding: 100px 0;
}

.banner-slide.active {
    display: flex;
    position: relative;
    align-items: center;
}

.banner-slide .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.banner-slide .hero-content {
    max-width: 700px;
    text-align: left;
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.banner-prev:hover,
.banner-next:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.banner-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dots .dot.active,
.banner-dots .dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 500px;
    }
    
    .banner-slide {
        padding: 60px 0;
    }
    
    .banner-slide .hero-content {
        max-width: 100%;
    }
    
    .banner-slide h1 {
        font-size: 28px !important;
    }
    
    .banner-slide p {
        font-size: 14px !important;
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-dots {
        bottom: 20px;
    }
}

/* ============================================================
   MODERN ANIMATIONS & EFFECTS
   ============================================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 50%, var(--purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Modern Card Hover Effects */
.card-hover-lift {
    transition: var(--transition);
}

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

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Neon Glow Effect */
.neon-glow {
    box-shadow: 0 0 20px rgba(123,92,240,0.5),
                0 0 40px rgba(123,92,240,0.3),
                0 0 60px rgba(123,92,240,0.1);
}

/* Ripple Effect */
.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;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 8px 12px;
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.tooltip:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.badge-secondary {
    background: var(--secondary);
    color: var(--white);
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--gray-900);
}

.badge-danger {
    background: var(--danger);
    color: var(--white);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(123,92,240,0.4);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.fab:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 35px rgba(123,92,240,0.5);
}

/* Banner Text Styling for Clear Background */
.banner-slide .hero-content h1,
.banner-slide .hero-content p {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    color: var(--white);
}

.banner-slide .hero-content h1 {
    color: var(--white) !important;
}

.banner-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Navigation Responsive Breakpoint */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .btn-book {
        padding: 6px 16px !important;
        font-size: 13px;
    }
}

/* Center Hero Content for Non-Homepage Sections */
.hero-center {
    text-align: center;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 350px !important;
    padding: 40px 0 !important;
}

.hero-center .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-center h1 {
    text-align: center;
}

.hero-center p {
    text-align: center;
    margin: 0 auto;
}

/* Homepage Element Size Reduction */
body.home-page .hero {
    padding: 60px 0;
}

body.home-page .hero h1 {
    font-size: 42px;
}

body.home-page .hero p {
    font-size: 16px;
    margin-bottom: 25px;
}

body.home-page .hero-badge {
    padding: 8px 18px;
    font-size: 11px;
    margin-bottom: 20px;
}

body.home-page .hero-buttons {
    gap: 12px;
}

body.home-page .btn {
    padding: 12px 24px;
    font-size: 15px;
}

body.home-page .features-section {
    padding: 40px 0;
    margin-top: -30px;
}

body.home-page .feature-card-horizontal {
    padding: 24px;
}

body.home-page .feature-card-horizontal .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 12px;
}

body.home-page .feature-card-horizontal h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

body.home-page .feature-card-horizontal p {
    font-size: 13px;
}

body.home-page section {
    padding: 50px 0;
}

body.home-page .section-header {
    margin-bottom: 40px;
}

body.home-page .section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

body.home-page .section-header p {
    font-size: 16px;
}

body.home-page .service-card {
    padding: 28px;
}

body.home-page .service-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
    margin-bottom: 16px;
}

body.home-page .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

body.home-page .service-card p {
    font-size: 14px;
    margin-bottom: 12px;
}

body.home-page .service-price {
    font-size: 20px;
}

body.home-page .testimonial-card {
    padding: 24px;
}

body.home-page .testimonial-message {
    font-size: 14px;
    margin-bottom: 16px;
}

body.home-page .author-info h4 {
    font-size: 15px;
}

body.home-page .author-info p {
    font-size: 13px;
}

body.home-page .stars {
    font-size: 16px;
}

body.home-page .quality-badge {
    padding: 18px 22px;
}

body.home-page .quality-badge .icon {
    font-size: 28px;
    margin-bottom: 6px;
}

body.home-page .quality-badge .text {
    font-size: 12px;
}

/* Banner Slider Size Reduction */
body.home-page .banner-slide h1 {
    font-size: 42px;
}

body.home-page .banner-slide p {
    font-size: 16px;
}

body.home-page .banner-prev,
body.home-page .banner-next {
    width: 45px;
    height: 45px;
    font-size: 20px;
}

body.home-page .banner-dots .dot {
    width: 10px;
    height: 10px;
}

/* CTA Section */
body.home-page section[style*="linear-gradient"] {
    padding: 45px 0 !important;
}

body.home-page section[style*="linear-gradient"] h2 {
    font-size: 32px !important;
    margin-bottom: 16px !important;
}

body.home-page section[style*="linear-gradient"] p {
    font-size: 16px !important;
    margin-bottom: 24px !important;
}

/* Mobile Logo and Hamburger Positioning */
@media (max-width: 768px) {
    .logo {
        display: flex !important;
        z-index: 10001;
    }
    
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .mobile-toggle {
        order: 2;
    }
}

/* About Page Element Size Reduction */
body.about-page .hero-center {
    min-height: 300px !important;
    padding: 35px 0 !important;
}

body.about-page .hero-center h1 {
    font-size: 36px;
}

body.about-page .hero-center p {
    font-size: 15px;
}

body.about-page section {
    padding: 50px 0;
}

body.about-page .section-header {
    margin-bottom: 40px;
}

body.about-page .section-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

body.about-page .section-header p {
    font-size: 15px;
}

body.about-page .service-card {
    padding: 28px;
}

body.about-page .service-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
    margin-bottom: 16px;
}

body.about-page .service-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

body.about-page .service-card p {
    font-size: 14px;
}

body.about-page .staff-card {
    padding: 0;
}

body.about-page .staff-photo {
    height: 240px;
}

body.about-page .staff-info {
    padding: 18px;
}

body.about-page .staff-info h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

body.about-page .staff-role {
    font-size: 14px;
    margin-bottom: 6px;
}

body.about-page .staff-info p {
    font-size: 13px;
}

body.about-page .staff-rank {
    padding: 3px 10px;
    font-size: 12px;
}

/* About Page Mission Section */
body.about-page section > .container > div[style*="max-width:900px"] {
    font-size: 15px;
    line-height: 1.7;
}

body.about-page section > .container > div[style*="max-width:900px"] p {
    margin-bottom: 16px;
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
    body.about-page .hero-center {
        min-height: 250px !important;
        padding: 30px 0 !important;
    }
    
    body.about-page .hero-center h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    body.about-page .hero-center p {
        font-size: 13px;
    }
    
    body.about-page section {
        padding: 30px 0;
    }
    
    body.about-page .section-header {
        margin-bottom: 30px;
    }
    
    body.about-page .section-header h2 {
        font-size: 22px;
    }
    
    body.about-page .section-header p {
        font-size: 13px;
    }
    
    body.about-page .service-card {
        padding: 20px;
    }
    
    body.about-page .service-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    body.about-page .service-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    body.about-page .service-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    body.about-page .services-grid {
        gap: 16px;
    }
    
    body.about-page .staff-grid {
        gap: 16px;
    }
    
    body.about-page .staff-photo {
        height: 200px;
    }
    
    body.about-page .staff-info {
        padding: 14px;
    }
    
    body.about-page .staff-info h3 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    body.about-page .staff-role {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    body.about-page .staff-info p {
        font-size: 12px;
    }
    
    body.about-page .staff-rank {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    body.about-page section > .container > div[style*="max-width:900px"] {
        font-size: 13px;
        line-height: 1.6;
    }
    
    body.about-page section > .container > div[style*="max-width:900px"] p {
        margin-bottom: 14px;
    }
    
    body.about-page .container {
        padding: 0 16px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    body.about-page .hero-center h1 {
        font-size: 22px;
    }
    
    body.about-page .hero-center p {
        font-size: 12px;
    }
    
    body.about-page .section-header h2 {
        font-size: 20px;
    }
    
    body.about-page .section-header p {
        font-size: 12px;
    }
    
    body.about-page .service-card {
        padding: 18px;
    }
    
    body.about-page .service-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    body.about-page .service-card h3 {
        font-size: 14px;
    }
    
    body.about-page .service-card p {
        font-size: 12px;
    }
    
    body.about-page .staff-photo {
        height: 180px;
    }
    
    body.about-page .staff-info {
        padding: 12px;
    }
    
    body.about-page .staff-info h3 {
        font-size: 14px;
    }
    
    body.about-page .staff-role {
        font-size: 12px;
    }
    
    body.about-page .staff-info p {
        font-size: 11px;
    }
    
    body.about-page section > .container > div[style*="max-width:900px"] {
        font-size: 12px;
    }
}

/* ===== SERVICES PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .services-page .hero h1 { font-size: 24px; }
    .services-page .hero p { font-size: 14px; }
    .services-page section { padding: 30px 0; }
    .services-page .section-header h2 { font-size: 22px; }
    .services-page .section-header p { font-size: 13px; }
    .services-page .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .services-page .service-card { padding: 20px; }
    .services-page .service-card h3 { font-size: 16px; }
    .services-page .service-card p { font-size: 13px; }
    .services-page .service-icon { font-size: 45px; }
    .services-page .service-price { font-size: 18px; }
    .services-page .btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .services-page .hero h1 { font-size: 22px; }
    .services-page .section-header h2 { font-size: 20px; }
    .services-page .service-card { padding: 18px; }
    .services-page .service-card h3 { font-size: 15px; }
    .services-page .service-card p { font-size: 12px; }
    .services-page .service-icon { font-size: 42px; }
    .services-page .service-price { font-size: 16px; }
}

/* ===== STAFFING PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .staffing-page .hero h1 { font-size: 24px; }
    .staffing-page .hero p { font-size: 14px; }
    .staffing-page section { padding: 30px 0; }
    .staffing-page .section-header h2 { font-size: 22px; }
    .staffing-page .section-header p { font-size: 13px; }
    .staffing-page .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .staffing-page .service-card { padding: 20px; }
    .staffing-page .service-card h3 { font-size: 16px; }
    .staffing-page .service-card p { font-size: 13px; }
    .staffing-page .service-icon { font-size: 45px; }
    .staffing-page ul li { padding: 12px 0; font-size: 13px; }
    .staffing-page .form-group label { font-size: 13px; }
    .staffing-page .form-control { padding: 10px; font-size: 13px; }
    .staffing-page .btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .staffing-page .hero h1 { font-size: 22px; }
    .staffing-page .section-header h2 { font-size: 20px; }
    .staffing-page .service-card { padding: 18px; }
    .staffing-page .service-card h3 { font-size: 15px; }
    .staffing-page .service-card p { font-size: 12px; }
    .staffing-page .service-icon { font-size: 42px; }
    .staffing-page ul li { font-size: 12px; }
}

/* ===== TRAINING PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .training-page .hero h1 { font-size: 24px; }
    .training-page .hero p { font-size: 14px; }
    .training-page section { padding: 30px 0; }
    .training-page .section-header h2 { font-size: 22px; }
    .training-page .section-header p { font-size: 13px; }
    .training-page .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .training-page .service-card { padding: 20px; }
    .training-page .service-card h3 { font-size: 16px; }
    .training-page .service-card p { font-size: 13px; }
    .training-page .service-icon { font-size: 45px; }
    .training-page .service-price { font-size: 18px; }
    .training-page .form-group label { font-size: 13px; }
    .training-page .form-control { padding: 10px; font-size: 13px; }
    .training-page .btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .training-page .hero h1 { font-size: 22px; }
    .training-page .section-header h2 { font-size: 20px; }
    .training-page .service-card { padding: 18px; }
    .training-page .service-card h3 { font-size: 15px; }
    .training-page .service-card p { font-size: 12px; }
    .training-page .service-icon { font-size: 42px; }
    .training-page .service-price { font-size: 16px; }
}

/* ===== JOBS PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .jobs-page .hero h1 { font-size: 24px; }
    .jobs-page .hero p { font-size: 14px; }
    .jobs-page section { padding: 30px 0; }
    .jobs-page .section-header h2 { font-size: 22px; }
    .jobs-page .section-header p { font-size: 13px; }
    .jobs-page .service-card { padding: 20px; margin-bottom: 16px; }
    .jobs-page .service-card h3 { font-size: 16px; }
    .jobs-page .service-card p { font-size: 13px; }
    .jobs-page .form-group label { font-size: 13px; }
    .jobs-page .form-control { padding: 10px; font-size: 13px; }
    .jobs-page .btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .jobs-page .hero h1 { font-size: 22px; }
    .jobs-page .section-header h2 { font-size: 20px; }
    .jobs-page .service-card { padding: 18px; }
    .jobs-page .service-card h3 { font-size: 15px; }
    .jobs-page .service-card p { font-size: 12px; }
}

/* ===== BLOG PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .blog-page .hero h1 { font-size: 24px; }
    .blog-page .hero p { font-size: 14px; }
    .blog-page section { padding: 30px 0; }
    .blog-page .service-card { padding: 20px; }
    .blog-page .service-card h3 { font-size: 16px; }
    .blog-page .service-card p { font-size: 13px; }
    .blog-page .service-card img { height: 160px; margin-bottom: 12px; }
    .blog-page .badge { font-size: 11px; padding: 4px 10px; }
    .blog-page .btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .blog-page .hero h1 { font-size: 22px; }
    .blog-page .service-card { padding: 18px; }
    .blog-page .service-card h3 { font-size: 15px; }
    .blog-page .service-card p { font-size: 12px; }
    .blog-page .service-card img { height: 140px; }
}

/* ===== BOOKING PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .booking-page .hero h1 { font-size: 24px; }
    .booking-page .hero p { font-size: 14px; }
    .booking-page section { padding: 30px 0; }
    .booking-page .section-header h2 { font-size: 22px; }
    .booking-page .section-header p { font-size: 13px; }
    .booking-page .form-group label { font-size: 13px; }
    .booking-page .form-control { padding: 10px; font-size: 13px; }
    .booking-page .btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .booking-page .hero h1 { font-size: 22px; }
    .booking-page .section-header h2 { font-size: 20px; }
}

/* ===== CONTACT PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-page .hero h1 { font-size: 24px; }
    .contact-page .hero p { font-size: 14px; }
    .contact-page section { padding: 30px 0; }
    .contact-page .section-header h2 { font-size: 22px; }
    .contact-page h2 { font-size: 20px; margin-bottom: 16px; }
    .contact-page div[style*="grid-template-columns"] { grid-template-columns: 1fr; gap: 30px; }
    .contact-page div[style*="margin-bottom:20px"] { margin-bottom: 16px; font-size: 13px; }
    .contact-page strong { font-size: 13px; }
    .contact-page .form-group label { font-size: 13px; }
    .contact-page .form-control { padding: 10px; font-size: 13px; }
    .contact-page .btn { padding: 10px 18px; font-size: 13px; }
    .contact-page div[style*="padding:20px"] { padding: 16px; }
    .contact-page div[style*="padding:20px"] h3 { font-size: 15px; }
    .contact-page div[style*="padding:20px"] p { font-size: 13px; }
}

@media (max-width: 480px) {
    .contact-page .hero h1 { font-size: 22px; }
    .contact-page .section-header h2 { font-size: 20px; }
    .contact-page h2 { font-size: 18px; }
    .contact-page div[style*="margin-bottom:20px"] { font-size: 12px; }
    .contact-page div[style*="padding:20px"] { padding: 14px; }
    .contact-page div[style*="padding:20px"] h3 { font-size: 14px; }
    .contact-page div[style*="padding:20px"] p { font-size: 12px; }
}

/* ===== SERVICES COLUMN GRID LAYOUT ===== */
.services-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.service-column-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.service-column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(123, 92, 240, 0.15);
}

/* Update Services Page Mobile Responsive for Column Grid */
@media (max-width: 768px) {
    .services-column-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-column-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-column-card {
        padding: 18px;
    }
}

/* ===== JOB LISTING CARDS ===== */
.job-listing-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-listing-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(123, 92, 240, 0.15);
}

/* ===== JOB APPLICATION FORM ===== */
.job-application-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.job-application-form .form-group {
    margin-bottom: 18px;
}

.job-application-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.job-application-form .form-control {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.job-application-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 92, 240, 0.1);
}

/* Mobile Responsive for Jobs Page */
@media (max-width: 768px) {
    .job-listing-card {
        padding: 20px;
    }
    
    .job-application-form {
        padding: 24px;
    }
    
    .job-application-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
}

@media (max-width: 480px) {
    .job-listing-card {
        padding: 18px;
    }
    
    .job-application-form {
        padding: 20px;
    }
}

/* ===== BLOG POST CARDS (FACEBOOK STYLE) ===== */
.blog-post-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.blog-post-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.blog-post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    padding: 16px 20px;
}

/* Post Actions */
.blog-post-actions {
    border-top: 1px solid var(--gray-200);
    padding: 8px 20px;
}

.blog-action-stats {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 8px;
}

.like-icon {
    background: var(--primary);
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 10px;
}

.blog-action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.blog-action-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.blog-action-btn:hover {
    background: var(--gray-100);
}

.blog-action-btn.liked {
    color: var(--primary);
}

/* Comments Section */
.blog-comments-section {
    border-top: 1px solid var(--gray-200);
    padding: 16px 20px;
    background: var(--gray-50);
}

.blog-comment-form {
    margin-bottom: 16px;
}

.comment-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    font-size: 13px;
    resize: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.comment-input:focus {
    outline: none;
    border-color: var(--primary);
}

.blog-comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-comment-item {
    animation: slideIn 0.3s ease;
}

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

/* Mobile Responsive for Blog Page */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 14px 16px;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 14px 16px;
    }
    
    .blog-post-actions {
        padding: 8px 16px;
    }
    
    .blog-action-btn {
        font-size: 12px;
        padding: 6px;
    }
    
    .blog-comments-section {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .blog-post-header {
        padding: 12px 14px;
    }
    
    .blog-post-image {
        height: 180px;
    }
    
    .blog-post-content {
        padding: 12px 14px;
    }
    
    .blog-post-actions {
        padding: 6px 14px;
    }
    
    .blog-action-btn {
        font-size: 11px;
        gap: 4px;
    }
    
    .blog-action-btn span {
        font-size: 14px !important;
    }
}

/* ===== BOOKING FORM ===== */
.booking-form {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(123, 92, 240, 0.12);
    border: 2px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.booking-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-form label::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--primary);
    border-radius: 2px;
}

.booking-form .form-control {
    width: 100%;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 12px 16px;
    font-size: 13px;
}

.booking-form .form-control:hover {
    border-color: var(--primary-light);
}

.booking-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(123, 92, 240, 0.1);
    transform: translateY(-1px);
}

.booking-form select.form-control {
    cursor: pointer;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B5CF0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    appearance: none;
}

.booking-form textarea.form-control {
    resize: vertical;
    font-family: inherit;
    min-height: 80px;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    cursor: pointer;
}

.booking-form .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(123, 92, 240, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 92, 240, 0.4);
}

.booking-form .btn-primary:active {
    transform: translateY(0);
}

/* Form Grid Sections */
.booking-form-section {
    background: rgba(123, 92, 240, 0.03);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
}

.booking-form-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Responsive for Booking Page */
@media (max-width: 768px) {
    .booking-form {
        padding: 28px;
    }
    
    .booking-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .booking-form .form-control {
        padding: 11px 14px;
    }
}

@media (max-width: 480px) {
    .booking-form {
        padding: 24px;
    }
    
    .booking-form label::before {
        width: 2px;
        height: 12px;
    }
}

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(123, 92, 240, 0.12);
    border: 2px solid var(--primary-light);
    position: relative;
    height: fit-content;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px 12px 0 0;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(123, 92, 240, 0.1);
}

.contact-info-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(123, 92, 240, 0.3);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(123, 92, 240, 0.12);
    border: 2px solid var(--primary-light);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px 12px 0 0;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-form label::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-form .form-control {
    width: 100%;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 12px 16px;
    font-size: 13px;
}

.contact-form .form-control:hover {
    border-color: var(--primary-light);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(123, 92, 240, 0.1);
    transform: translateY(-1px);
}

.contact-form textarea.form-control {
    resize: vertical;
    font-family: inherit;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(123, 92, 240, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 92, 240, 0.4);
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(123, 92, 240, 0.1);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 18px 20px;
    border-top: 1px solid var(--gray-200);
    animation: slideDown 0.3s ease;
}

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

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-page div[style*="grid-template-columns: 1fr 1.2fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-info-card,
    .contact-form {
        padding: 24px;
    }
    
    .contact-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .contact-info-item {
        padding: 14px;
    }
    
    .contact-info-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-answer {
        padding: 0 18px 16px 18px;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .contact-form {
        padding: 20px;
    }
    
    .contact-info-item {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-info-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .social-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-toggle {
        width: 26px;
        height: 26px;
        font-size: 20px;
    }
}


/* ============================================================
   ENHANCED MOBILE RESPONSIVE (Additional Improvements)
   ============================================================ */

/* Mobile Container Padding */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Top - Hide on very small screens */
    .header-top-left span {
        font-size: 11px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-col {
        text-align: left;
    }
    
    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    
    .footer-col h3::after {
        left: 0;
        width: 40px;
        height: 2px;
    }
    
    .footer-col p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .footer-col ul {
        padding: 0;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
    }
    
    .footer-col ul li a {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .footer-contact-item {
        font-size: 13px;
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .footer-contact-item span:first-child {
        font-size: 16px;
    }
    
    .footer-col form input[type="email"] {
        padding: 12px 14px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-col form button {
        padding: 12px 18px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .footer-social {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    /* Footer Quick Actions - Mobile Only */
    .footer-quick-actions {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-quick-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 10px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        color: white;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .footer-quick-btn:active {
        transform: scale(0.98);
        background: rgba(255,255,255,0.15);
    }
    
    .footer-quick-btn span:first-child {
        font-size: 18px;
    }
    
    /* First column - company info */
    .footer-col:first-child {
        padding-bottom: 0;
    }
    
    /* Newsletter section - highlighted */
    .footer-col:last-child {
        background: rgba(123,92,240,0.08);
        padding: 25px 20px;
        border-radius: 12px;
        border: 1px solid rgba(123,92,240,0.2);
        margin-top: 10px;
    }
    
    .footer-col:last-child h3 {
        color: var(--primary-light);
    }
    
    footer {
        padding: 45px 0 0;
    }
    
    footer::after {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -20%;
    }
    
    .footer-bottom {
        padding: 20px 0;
        font-size: 12px;
    }
    
    .footer-bottom p {
        flex-direction: column;
        gap: 8px;
        line-height: 1.6;
    }
    
    .footer-bottom p span {
        display: block;
    }
    
    /* Back to Top Button - Mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-col h3 {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .footer-col p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .footer-col ul li a {
        font-size: 12px;
        padding: 7px 0;
    }
    
    .footer-contact-item {
        font-size: 12px;
        margin-bottom: 10px;
        gap: 8px;
    }
    
    .footer-contact-item span:first-child {
        font-size: 15px;
    }
    
    .footer-col form input[type="email"] {
        padding: 11px 12px;
        font-size: 13px;
    }
    
    .footer-col form button {
        padding: 11px 16px;
        font-size: 13px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    
    /* Quick Actions - Vertical Stack */
    .footer-quick-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-quick-btn {
        padding: 14px 15px;
        font-size: 14px;
    }
    
    .footer-col:last-child {
        padding: 20px 15px;
    }
    
    footer {
        padding: 40px 0 0;
    }
    
    .footer-bottom {
        padding: 18px 0;
        font-size: 11px;
    }
    
    .footer-bottom p {
        gap: 6px;
    }
    
    /* Back to Top Button - Small Mobile */
    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 12px;
        right: 12px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Forms Mobile */
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Staff Grid Mobile */
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .staff-photo {
        height: 250px;
    }
    
    /* Team Page Mobile */
    .staff-info .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Services Column Grid Mobile */
    .services-column-grid {
        grid-template-columns: 1fr;
    }
    
    .service-column-card {
        padding: 20px;
    }
    
    .service-column-card .service-icon {
        font-size: 35px;
        margin-bottom: 10px;
    }
    
    .service-column-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-column-card p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .service-column-card .service-price {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-column-card .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Hide header top on very small screens */
    .header-top {
        display: none;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    /* Staff Cards Mobile */
    .staff-photo {
        height: 220px;
    }
    
    .staff-info {
        padding: 15px;
    }
    
    .staff-info h3 {
        font-size: 16px;
    }
    
    .staff-role {
        font-size: 13px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-message {
        font-size: 13px;
    }
    
    /* Footer Mobile */
    .footer-col h3 {
        font-size: 18px;
    }
    
    .footer-col ul li {
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
    
    /* Blog Post Cards Mobile */
    .blog-post-card {
        margin-bottom: 15px;
    }
    
    .blog-post-header h3 {
        font-size: 16px;
    }
    
    .blog-post-image {
        height: 180px;
    }
    
    /* Booking Form Mobile */
    .booking-form {
        padding: 20px;
    }
    
    .booking-form-section {
        padding: 15px;
    }
    
    .booking-form-section-title {
        font-size: 14px;
    }
    
    /* Contact Form Mobile */
    .contact-form,
    .contact-info-card {
        padding: 20px;
    }
    
    /* Job Listing Mobile */
    .job-listing-card {
        padding: 18px;
    }
    
    .job-application-form {
        padding: 20px;
    }
}

/* Landscape Mobile (Small Height) */
@media (max-width: 768px) and (max-height: 500px) {
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    section {
        padding: 30px 0;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets for touch devices */
    .btn {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .form-control {
        min-height: 44px;
    }
    
    /* Footer touch improvements */
    .footer-col ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 10px 0;
    }
    
    .footer-social a {
        min-width: 48px;
        min-height: 48px;
    }
    
    .footer-col form button {
        min-height: 48px;
        padding: 14px 20px;
    }
    
    .footer-col form input[type="email"] {
        min-height: 48px;
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .staff-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    .footer-col ul li a:hover {
        transform: none;
    }
    
    .footer-social a:hover {
        transform: none;
    }
    
    /* Better touch feedback */
    .btn:active {
        transform: scale(0.98);
    }
    
    .footer-col ul li a:active {
        background: rgba(255,255,255,0.05);
        border-radius: 4px;
    }
    
    .footer-social a:active {
        transform: scale(0.95);
    }
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print Styles */
@media print {
    .header-top,
    nav,
    .mobile-toggle,
    .hero-buttons,
    .btn,
    footer,
    .banner-prev,
    .banner-next,
    .banner-dots {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .service-card,
    .staff-card,
    .testimonial-card {
        page-break-inside: avoid;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--white);
    }
    
    .service-card,
    .staff-card,
    .testimonial-card {
        border: 2px solid var(--gray-900);
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --white: #1A202C;
        --black: #FFFFFF;
        --gray-50: #2D3748;
        --gray-100: #4A5568;
        --gray-200: #718096;
        --gray-900: #F7FAFC;
    }
    
    body {
        background: var(--white);
        color: var(--black);
    }
    */
}
