:root {
    --primary-color: #61222b;
    /* Burgundy - Main Brand Color */
    --primary-dark: #3d151b;
    --secondary-color: #245f64;
    /* Teal - Secondary Brand Color */
    --gold-color: #c5a059;
    /* Gold - Details/Accents */
    --accent-color: #f9f3f4;
    /* Very light burgundy tint for backgrounds */
    --text-color: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --light-bg: #fdfbfb;
    /* Rich gradient combining the two brand colors */
    --gradient-hero: linear-gradient(135deg, rgba(97, 34, 43, 0.95) 0%, rgba(36, 95, 100, 0.9) 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Custom Selection */
::selection {
    background: var(--gold-color);
    color: var(--white);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Increased padding for breathing room */
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-subtitle {
    color: var(--gold-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    /* Increased letter spacing for elegance */
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    /* Gradient for depth */
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(97, 34, 43, 0.3);
    /* Colored shadow */
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(97, 34, 43, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 60%;
    /* Subtle underline */
    left: 20%;
    background-color: var(--gold-color);
}

.nav-links a:hover {
    color: var(--gold-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-menu a {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-mobile {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: top center;
    /* Adjusted to show faces */
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-text h1 {
    font-size: 4rem;
    /* Larger, more impact */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Subtle text shadow for readability */
}

.hero-text .tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy luxurious feel */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-image {
    height: 200px;
    overflow: hidden;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Focus on faces/top part of image */
    transition: var(--transition);
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    position: relative;
}

.card-content .icon-box {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 10px;
}

/* Why Us */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.align-center {
    align-items: center;
}

.why-content {
    flex: 1;
    min-width: 300px;
}

.why-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.why-image img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}


.feature-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.3);
    /* Low opacity gold */
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--gold-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text h4 {
    color: var(--primary-color);
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact & Recruitment Forms */
.contact-section {
    background-color: var(--white);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-color);
    /* The requested #61222b base */
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(61, 21, 27, 0.3);
    border: 1px solid var(--gold-color);
    /* Fine gold detail */
    position: relative;
    overflow: hidden;
}

/* Decorative Gold line at top */
.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.form-header h2.section-title {
    color: var(--white);
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
}

.modern-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    font-weight: 500;
    color: var(--gold-color);
    /* Gold labels for elegance */
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 15px 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    /* Subtle gold border */
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03) !important;
    /* Glassy dark feel */
    color: var(--white);
    backdrop-filter: blur(5px);
}

/* Fix for Select Dropdown Options */
.input-group select option {
    background-color: var(--primary-dark);
    /* Dark Burgundy background */
    color: var(--gold-color);
    /* Gold text */
    padding: 10px;
}

/* End fix */

/* Placeholder color fix for dark bg */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
    /* Gold glow */
    transform: translateY(-2px);
}

/* Button override inside form for Gold contrast */
.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--gold-color) 0%, #a08148 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.form-actions .btn-primary:hover {
    background: linear-gradient(135deg, #a08148 0%, var(--gold-color) 100%);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Recruitment Specifics */
.recruitment-wrapper {
    padding: 40px 0;
}

.reverse-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.col-text {
    flex: 1;
    padding-right: 40px;
}

.col-form {
    flex: 1;
    max-width: 450px;
}

.recruit-list {
    margin-top: 20px;
}

.recruit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.recruit-list i {
    color: var(--secondary-color);
    background: rgba(2, 119, 189, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.recruit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
}

.recruit-card h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.modern-form.compact {
    display: flex;
    flex-direction: column;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.btn-secondary:hover {
    background-color: #01579b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: #aaa;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}



/* =========================================
   Multidisciplinary Team Section (New)
   ========================================= */
.mt-section {
    position: relative;
    background-color: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.mt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.mt-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.mt-icon {
    width: 90px;
    height: 90px;
    background-color: #e0f2f1;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.mt-card:hover .mt-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.mt-card h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mt-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Differentiated Services Pills */
.mt-services-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.mt-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.mt-pill {
    background: var(--white);
    border: 1px solid #e1e1e1;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.mt-pill i {
    color: var(--secondary-color);
}

.mt-pill:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mt-pill:hover i {
    color: var(--white);
}

/* Specialist Hero Box */
.mt-hero-box {
    display: flex;
    background: linear-gradient(135deg, #004D40 0%, #00695c 100%);
    border-radius: 30px;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 77, 64, 0.2);
    min-height: 500px;
}

.mt-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mt-hero-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.mt-hero-box:hover .mt-hero-image img {
    transform: scale(1.03);
}

.mt-hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mt-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mt-hero-content h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.mt-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.mt-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.mt-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

.mt-list i {
    color: #4DB6AC;
    /* Teal accent */
    font-size: 1.2rem;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

@media (max-width: 992px) {

    /* Header */
    .header-cta .btn,
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 2.5rem;
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: 2;
        margin-top: 40px;
    }

    .about-features {
        display: inline-block;
        text-align: left;
    }

    /* MT Section (New) */
    .mt-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .mt-hero-box {
        flex-direction: column;
        min-height: auto;
    }

    .mt-hero-image {
        height: 300px;
        width: 100%;
    }

    .mt-hero-content {
        padding: 40px 30px;
    }

    .mt-hero-content h3 {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Social Links in Footer */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold-color);
    transform: translateY(-3px);
}


@media (max-width: 576px) {
    .mt-list {
        grid-template-columns: 1fr;
    }

    .mt-hero-content {
        padding: 30px 20px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .modern-form {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 20px;
    }

    .reverse-mobile {
        flex-direction: column;
        gap: 40px;
    }

    .col-text {
        padding-right: 0;
        text-align: center;
    }

    .recruit-list {
        display: inline-block;
        text-align: left;
    }

    .col-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .container {
        padding: 0 25px;
        /* Slightly less on very small screens, but better than 20 */
    }
}

/* =========================================
   Interactive FAQ Cards
   ========================================= */
.faq-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(97, 34, 43, 0.1);
    /* Primary color hint */
}

/* Subtle gradient overlay effect on hover */
.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Top border accent */
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-card:hover .faq-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.faq-content h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: var(--font-main);
    /* Keeping clean for readability */
    font-weight: 700;
}

.faq-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Technical Responsible Section */
#technical-responsible {
    padding: 80px 0;
    background-color: #f9f9f9;
}

#technical-responsible .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.responsible-image img {
    border: 5px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.responsible-image img:hover {
    transform: scale(1.05);
}

.responsible-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.responsible-content .role {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Service Page Specifics */
.service-page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.service-page-content {
    padding: 60px 0;
}

.service-page-content h2,
.service-page-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
}

.service-page-content ul {
    list-style: none;
    padding-left: 0;
}

.service-page-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-page-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}



/* Cookie Consent Plugin */
.cookie-consent-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 90%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.98);
    /* Slightly more opaque */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 999999;
    /* Max visibility */
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-main);
    pointer-events: auto;
    /* Ensure clickable */
}

.cookie-consent-container.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--gold-color);
    background: rgba(197, 160, 89, 0.1);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 50px;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #f1f1f1;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Mobile Responsiveness for Cookie Banner */
@media (max-width: 480px) {
    .cookie-consent-container {
        bottom: 20px;
        /* Give it some breathing room */
        right: 50%;
        transform: translateX(50%) translateY(150%);
        /* Center horizontally */
        width: 95%;
        max-width: 95%;
        border-radius: 20px;
        /* Keep rounded corners */
        padding: 20px;
    }

    .cookie-consent-container.active {
        transform: translateX(50%) translateY(0);
    }

    .cookie-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .cookie-text h3 {
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }
}



/* Technical Responsible Section Revamp */
.tech-responsible-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.profile-card {
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.2);
    /* Subtle gold border */
    position: relative;
}

.profile-image-wrapper {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.profile-card:hover .profile-image {
    transform: scale(1.05);
}

.gold-accent-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: transparent;
    border: 30px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    z-index: 10;
}

.profile-content {
    flex: 1.2;
    padding: 60px;
    position: relative;
    z-index: 2;
}

.profile-label {
    display: block;
    color: var(--gold-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.profile-credentials {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.credential-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid var(--gold-color);
    box-shadow: 0 4px 10px rgba(97, 34, 43, 0.2);
}

.profile-bio p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.profile-signature {
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.signature-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-color);
    font-style: italic;
    font-weight: 600;
}

/* Responsiveness for Tech Responsible */
@media (max-width: 900px) {
    .profile-card {
        flex-direction: column;
        max-width: 500px;
    }

    .profile-image-wrapper {
        width: 100%;
        min-height: 350px;
        max-height: 400px;
    }

    .profile-content {
        padding: 40px 30px;
        text-align: center;
    }

    .profile-credentials {
        justify-content: center;
    }

    .profile-name {
        font-size: 2rem;
    }
}

/* --- SEO Silo & UX Enhancements --- */

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumbs span {
    margin: 0 10px;
    color: #ccc;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Silo Content Typography */
.silo-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2rem;
}
.silo-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}
.silo-content strong {
    color: var(--primary-color);
}

/* FAQ Accordion Styling for Silo Pages */
.faq-silo-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--secondary-color);
}
.faq-silo-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.faq-silo-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}