/* ============================================
   Qhomesinfra - Professional Real Estate Website
   ============================================ */

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --charcoal-grey: #374151;
    --medium-grey: #6b7280;
    --light-grey: #f3f4f6;
    --border-grey: #e5e7eb;
    --white: #ffffff;
    --text-dark: #111827;
    --text-light: #4b5563;
    --success: #10b981;
    --error: #ef4444;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 10;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    color: var(--charcoal-grey);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal-grey);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

.btn-nav {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-nav:hover {
    background: var(--dark-blue);
}

.btn-logout {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 6px !important;
    transition: background 0.3s !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: none !important;
    cursor: pointer !important;
    font-size: inherit !important;
    font-family: inherit !important;
}

.btn-logout:hover {
    background: var(--dark-blue) !important;
}

.btn-primary {
    background: #1ea873;
    border: none;
}

.btn-primary:hover {
    background: #18895d;
}

.btn-nav.active::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal-grey);
    transition: all 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* ============================================
   Sections
   ============================================ */

.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-grey);
    margin-bottom: 2rem;
    text-align: center;
}

.bg-light {
    background-color: var(--light-grey);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-block h2 {
    font-size: 1.75rem;
    color: var(--charcoal-grey);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-block h2:first-child {
    margin-top: 0;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   Leasing Hero Section
   ============================================ */

.leasing-hero {
    position: relative;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.leasing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.leasing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoom-in 20s ease-in-out infinite alternate;
}

@keyframes zoom-in {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.leasing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
    z-index: 1;
}

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

.leasing-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.leasing-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.leasing-hero-cta {
    margin-top: 2rem;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-left {
    animation: slide-left 0.8s ease-out;
}

.animate-slide-right {
    animation: slide-right 0.8s ease-out;
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ============================================
   Intro Section
   ============================================ */

.intro-section {
    padding: 5rem 0;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text-content {
    order: 1;
}

.intro-image-content {
    order: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.intro-image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.intro-image-content:hover img {
    transform: scale(1.05);
}

/* ============================================
   Who We Are Section
   ============================================ */

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-we-are-text {
    order: 1;
}

.who-we-are-image {
    order: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   Core Strengths
   ============================================ */

.strengths-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.strengths-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

.strengths-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   Services Grid
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-grey);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

/* ============================================
   Why Trust Section
   ============================================ */

.why-trust {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.why-trust-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.why-trust-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.85) 100%);
    z-index: 1;
}

.why-trust-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-trust .content-block p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.why-trust .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ============================================
   Projects Section
   ============================================ */

.projects-section {
    padding: 5rem 0;
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.sectors-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sector-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.projects-container {
    margin-top: 3rem;
}

.sector-projects {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sector-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.sector-icon {
    font-size: 1.75rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-item {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-item.featured {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-left-color: var(--light-blue);
}

.project-item h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.project-type {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.upcoming-projects {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-grey);
}

.upcoming-title {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-grey);
}

.projects-cta .cta-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ============================================
   About Page
   ============================================ */

.about-hero {
    position: relative;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoom-in 20s ease-in-out infinite alternate;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
    z-index: 1;
}

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

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-intro-section {
    padding: 5rem 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image-content:hover img {
    transform: scale(1.05);
}

.about-text-content {
    order: 1;
}

.vision-section {
    padding: 5rem 0;
}

.vision-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--primary-blue);
    animation: pulse 2s ease-in-out infinite;
}

.vision-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-blue);
    text-align: center;
    font-weight: 500;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.mission-section {
    padding: 5rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-blue);
    opacity: 0;
    animation-fill-mode: forwards;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.about-cta-section {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.85) 100%);
    z-index: 1;
}

.about-cta-section .cta-section {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-cta-section .cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-cta-section .cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Chairman's Message
   ============================================ */

.chairman-hero {
    position: relative;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.chairman-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.chairman-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoom-in 20s ease-in-out infinite alternate;
}

.chairman-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
    z-index: 1;
}

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

.chairman-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.chairman-hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.chairman-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.chairman-section {
    padding: 5rem 0;
}

.chairman-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.chairman-image-content {
    position: sticky;
    top: 100px;
}

.chairman-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.chairman-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.chairman-image-frame:hover img {
    transform: scale(1.05);
}

.chairman-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chairman-badge svg {
    flex-shrink: 0;
}

.chairman-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chairman-intro {
    background: var(--light-grey);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chairman-name-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.chairman-designation {
    color: var(--medium-grey);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qualifications-badge {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.qual-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.intro-text {
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.8;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.message-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.message-block:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.message-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 8px;
}

.message-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
}

.chairman-cta-section {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.chairman-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.chairman-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.chairman-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.85) 100%);
    z-index: 1;
}

.chairman-cta-section .cta-section {
    position: relative;
    z-index: 2;
    text-align: center;
}

.chairman-cta-section .cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.chairman-cta-section .cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Leasing Management
   ============================================ */

.process-section {
    padding: 5rem 0;
}

.process-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step-counter;
}

.process-item {
    counter-increment: step-counter;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.process-item::before {
    content: counter(step-counter);
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.process-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-grey);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.process-item:hover .process-image img {
    transform: scale(1.1);
}

.process-content {
    padding-left: 1rem;
}

.process-content strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-blue);
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* ============================================
   Service Cards with Icons
   ============================================ */

.who-service-section .service-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-grey);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-icon img {
    transform: scale(1.15);
}

.who-service-section .service-card h3 {
    padding: 1.5rem 1.5rem 0.75rem;
    margin: 0;
}

.who-service-section .service-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* ============================================
   Commercial Section
   ============================================ */

.commercial-section {
    padding: 5rem 0;
}

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

.commercial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--primary-blue);
    animation: pulse 2s ease-in-out infinite;
}

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

.commercial-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.commercial-content .highlight-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.commercial-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   CTA Final Section
   ============================================ */

.cta-final-section {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.85) 100%);
    z-index: 1;
}

.cta-final-section .cta-section {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-final-section .cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-final-section .cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-fullwidth {
    width: 100%;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    color: var(--charcoal-grey);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.contact-item {
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 8px;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.contact-map {
    width: 100%;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-wrapper {
    background: var(--light-grey);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    color: var(--charcoal-grey);
    margin-bottom: 1.5rem;
}

/* ============================================
   Forms
   ============================================ */

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

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--charcoal-grey);
    font-weight: 500;
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-grey);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

/* ============================================
   Alerts
   ============================================ */

.alert {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success);
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--error);
}

.alert-error ul {
    margin: 0.5rem 0 0 1.5rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--charcoal-grey);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
    
    .hero {
        padding: 4rem 0;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .who-we-are-image {
        order: 1;
    }
    
    .who-we-are-text {
        order: 2;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
    }
    
    .process-list li {
        padding-left: 4rem;
    }
    
    .process-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-trust {
        padding: 4rem 0;
        min-height: 400px;
    }
    
    .projects-section {
        padding: 3rem 0;
    }
    
    .sector-projects {
        padding: 2rem 1.5rem;
    }
    
    .sector-title {
        font-size: 1.25rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sectors-list {
        gap: 0.75rem;
    }
    
    .sector-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .leasing-hero {
        padding: 4rem 0;
        min-height: 500px;
    }
    
    .leasing-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .leasing-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image-content {
        order: 1;
    }
    
    .intro-text-content {
        order: 2;
    }
    
    .process-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .process-image {
        height: 200px;
        order: 1;
    }
    
    .process-content {
        order: 2;
        padding-left: 0;
    }
    
    .process-item::before {
        top: 1.5rem;
        left: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cta-final-section {
        padding: 4rem 0;
        min-height: 350px;
    }
    
    .cta-final-section .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-final-section .cta-section p {
        font-size: 1.1rem;
    }
    
    .about-hero {
        padding: 4rem 0;
        min-height: 500px;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-content {
        order: 1;
    }
    
    .about-text-content {
        order: 2;
    }
    
    .vision-text {
        font-size: 1.3rem;
        padding: 2rem 1.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cta-section {
        padding: 4rem 0;
        min-height: 350px;
    }
    
    .about-cta-section .cta-section h2 {
        font-size: 2rem;
    }
    
    .about-cta-section .cta-section p {
        font-size: 1.1rem;
    }
    
    .chairman-hero {
        padding: 4rem 0;
        min-height: 500px;
    }
    
    .chairman-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .chairman-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .chairman-name {
        font-size: 1.4rem;
    }
    
    .chairman-name-title {
        font-size: 1.6rem;
    }
    
    .chairman-designation {
        font-size: 1rem;
    }
    
    .chairman-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chairman-image-content {
        position: relative;
        top: 0;
    }
    
    .chairman-badge {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 1rem;
    }
}

/* ============================================
   Authentication Forms
   ============================================ */

.auth-section {
    padding: 4.5rem 0 5.5rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.auth-hero {
    background: radial-gradient(circle at 20% 20%, rgba(30,64,175,0.08), transparent 30%),
                radial-gradient(circle at 80% 0%, rgba(16,185,129,0.08), transparent 28%),
                #f7f9fc;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.auth-container.wide {
    max-width: 1140px;
}

.auth-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e7ecf5;
}

.register-card {
    padding: 0 3.5rem 3rem;
    overflow: hidden;
}

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

.register-topbar {
    height: 84px;
    margin: 0 -3.5rem 2.25rem;
    background: linear-gradient(135deg, #2f69c2, #1f4ea3);
    border-radius: 14px 14px 0 0;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.18);
}

.account-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.account-type-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border: 2px solid #dbe3f5;
    border-radius: 10px;
    cursor: pointer;
    background: #f5f7fb;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.account-type-card .account-type-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(59,130,246,0.12);
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.account-type-card:nth-child(2) .account-type-icon {
    background: rgba(16,185,129,0.12);
    color: #0f9f6e;
}

.account-type-card .account-type-text h3 {
    margin: 0;
    color: var(--charcoal-grey);
    font-size: 1.1rem;
}

.account-type-card .account-type-text p {
    margin: 0.15rem 0 0;
    color: var(--text-grey);
    font-size: 0.95rem;
}

.account-type-check {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #d8e2f4;
    display: grid;
    place-items: center;
    color: #fff;
    background: #d8e2f4;
    transition: all 0.25s ease;
}

.account-type-card.active {
    border-color: var(--primary-blue);
    background: linear-gradient(90deg, #2c6ed5, #1f4ea3);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.account-type-card.active:nth-child(2) {
    background: linear-gradient(90deg, #1ea873, #178654);
}

.account-type-card.active .account-type-text h3,
.account-type-card.active .account-type-text p {
    color: #fff;
}

.account-type-card.active .account-type-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.account-type-card.active .account-type-check {
    border-color: rgba(255,255,255,0.7);
    background: #fff;
    color: var(--primary-blue);
}

.account-type-card.active:nth-child(2) .account-type-check {
    color: #178654;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-grey);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: var(--text-grey);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.auth-form {
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal-grey);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 2px solid #dbe3f5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f9fbff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    padding: 0.95rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-grey);
}

.auth-footer p {
    color: var(--text-grey);
    margin: 0;
}

.auth-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--charcoal-grey);
    text-decoration: underline;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-error ul {
    margin: 0;
    padding-left: 1.5rem;
}

.alert-error li {
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .auth-section {
        padding: 3rem 0;
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
    .message-block {
        flex-direction: column;
        gap: 1rem;
    }
    
    .message-icon {
        width: 35px;
        height: 35px;
    }
    
    .chairman-cta-section {
        padding: 4rem 0;
        min-height: 350px;
    }
    
    .chairman-cta-section .cta-section h2 {
        font-size: 2rem;
    }
    
    .chairman-cta-section .cta-section p {
        font-size: 1.1rem;
    }
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff5a5f;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
}

.floating-btn:hover {
    background-color: #e04848;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .floating-btn {
        right: 10px;
        left: 10px;
        text-align: center;
    }
}


.image-preview-container {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

