/* PPP Experts - Custom Styles */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Logo */
.logo-container {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.site-logo {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-container a {
    text-decoration: none;
    display: block;
}

.logo-container:hover .site-logo {
    transform: scale(1.05);
}

/* Skip link */
.skip-link {
    position: absolute;
    left: 8px;
    top: -100px;
    background: #ffffff;
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
}
.skip-link:focus {
    top: 8px;
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 1001;
}

.hamburger-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #c91313;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.hamburger-menu.active .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.menu-list li {
    margin: 0;
}

.menu-list a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-list a:hover {
    background: rgba(201, 19, 19, 0.1);
    border-left-color: #c91313;
    color: #c91313;
    padding-left: 25px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    min-height: 90vh;
}

.hero-row {
    min-height: 90vh;
}

.hero-content {
    padding: 3rem;
    background: radial-gradient(ellipse at top left, #470c07 0%, #210907 50%, #180807 75%, #100707 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c91313;
    border-color: #c91313;
    color: white;
}

.btn-primary:hover {
    background-color: #b01111;
    border-color: #b01111;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid #c91313;
    color: #c91313;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: #c91313;
    border-color: #c91313;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

/* Section Styles */
.section-padding {
    padding: 7rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c1810;
}

.about-section {
    background: linear-gradient(135deg, #6b4567 0%, #8b5a87 100%);
    color: white;
    min-height: 90vh;
}

.about-row {
    min-height: 90vh;
}

.about-content-wrapper {
    padding: 3rem;
    background: radial-gradient(ellipse at top left, #470c07 0%, #210907 50%, #180807 75%, #100707 100%);
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

.about-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.about-description strong {
    font-weight: 600;
    color: white;
}

.about-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.services-section {
    background: linear-gradient(135deg, #f4c2c2 0%, #e8a8a8 100%);
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: left;
    color: #2c1810;
}

.services-description {
    font-size: 1.1rem;
    text-align: left;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #c91313;
    border-top: 15px solid #c91313;
    position: relative;
    margin-bottom: 2rem;
}

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

.service-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #c91313;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
    margin: 2rem 0 1rem;
    text-align: left;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.impact-section {
    background: linear-gradient(rgba(108, 117, 125, 0.8), rgba(108, 117, 125, 0.8)), 
                url('images/world-map.webp') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.impact-overlay {
    width: 100%;
    padding: 5rem 0;
}

.impact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: left;
    margin-bottom: 3rem;
}

.impact-stat {
    text-align: left;
    color: white;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #f8c2c2;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.training-section {
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
}

.training-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: left;
    color: #2c1810;
}

.training-description {
    font-size: 1.1rem;
    text-align: left;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.training-card {
    background: #740b0b;
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.3);
}

.training-icon {
    width: 50px;
    height: 50px;
    background: #c91313;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.training-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.training-card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.training-section .btn-primary {
    background-color: #c91313;
    border-color: #c91313;
    padding: 15px 40px;
    font-size: 0.95rem;
    font-weight: 600;
}

.events-section {
    background: none;
}

.events-header {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.events-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.events-content {
    background: radial-gradient(ellipse at top left, #2f0807 0%, #1b0707 50%, #170807 75%, #0d0707 100%);
    padding: 5rem 0;
    color: white;
}

.events-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: left;
    margin-bottom: 2rem;
}

.events-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.event-item {
    text-align: left;
    color: white;
    margin-bottom: 2rem;
}

.event-icon {
    width: 50px;
    height: 50px;
    background: #c91313;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.presence-section {
    background: none;
}

.presence-header {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.presence-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.presence-content {
    background: radial-gradient(ellipse at top left, #2f0807 0%, #1b0707 50%, #170807 75%, #0d0707 100%);
    padding: 5rem 0;
    color: white;
}

.presence-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: left;
    margin-bottom: 2rem;
}

.presence-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.region-item {
    text-align: left;
    color: white;
    margin-bottom: 2rem;
}

.region-icon {
    width: 50px;
    height: 50px;
    background: #c91313;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.region-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.region-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.ceo-section {
    background: radial-gradient(ellipse at top left, #7c424e 0%, #6f3f4e 50%, #4f404e 75%, #423f4e 100%);
    color: white;
}

.ceo-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.ceo-message-content {
    padding-right: 2rem;
}

.ceo-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.ceo-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.ceo-title-text {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.ceo-image-wrapper {
    text-align: center;
}

.ceo-image {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ceo-image:hover {
    transform: scale(1.02);
}

.case-studies-section {
    background: radial-gradient(ellipse at top left, #2f0807 0%, #1b0707 50%, #170807 75%, #0d0707 100%);
    color: white;
}

.case-studies-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-align: left;
    margin-bottom: 3rem;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.case-study-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.approach-highlight {
    background: #022349;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.approach-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.approach-content {
    flex: 1;
}

.approach-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.approach-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

.contact-section {
    background: radial-gradient(ellipse at top left, #470b07 0%, #3a0707 50%, #130707 75%, #0e0707 100%);
    color: white;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-info {
    padding-right: 2rem;
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #c91313;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff4757;
    text-decoration: underline;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-buttons {
    margin-top: 3rem;
}

.contact-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-buttons .btn-primary {
    background-color: #c91313;
    border-color: #c91313;
}

.contact-buttons .btn-primary:hover {
    background-color: #b01111;
    border-color: #b01111;
}

.contact-buttons .btn-outline-light {
    border-color: #c91313;
    color: #c91313;
}

.contact-buttons .btn-outline-light:hover {
    background-color: #c91313;
    border-color: #c91313;
    color: white;
}

.contact-image-wrapper {
    text-align: center;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.02);
}

/* Placeholder Content */
.placeholder-content {
    text-align: center;
    margin: 2rem 0;
}

.placeholder-content img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 30px;
        right: 30px;
    }
    
    .hamburger-btn {
        padding: 10px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .menu-dropdown {
        min-width: 180px;
        top: 50px;
    }
    
    .logo-container {
        top: 30px;
        left: 30px;
        padding: 8px;
    }
    
    .site-logo {
        height: 40px;
    }
    
    .logo-container {
        padding: 0;
    }
    
    .hamburger-btn {
        height: 46px;
        width: 46px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    
    .about-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .about-content-wrapper {
        padding: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-title {
        margin-bottom: 1.5rem;
    }
    
    .services-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .services-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .impact-title {
        font-size: 2.25rem;
    }
    
    .training-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .training-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .events-title {
        font-size: 2.25rem;
    }
    
    .events-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .presence-title {
        font-size: 2.25rem;
    }
    
    .presence-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .ceo-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .ceo-paragraph {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .case-studies-title {
        font-size: 2.25rem;
    }
    
    .contact-main-title {
        font-size: 2.25rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .ceo-message-content {
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .ceo-image-wrapper {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .ceo-section .row.mt-4 {
        margin-top: 1rem !important;
    }
    
    .approach-highlight {
        flex-direction: column;
        text-align: left;
        padding: 1.5rem;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .approach-icon {
        margin: 0;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }
    
    .approach-content {
        text-align: left;
    }
    
    .approach-title {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .approach-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .hero-buttons .btn {
        padding: 10px 25px;
        margin-bottom: 10px;
        display: block;
        text-align: center;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-img {
        height: 50vh;
        max-height: 50vh;
    }
    
    .about-img {
        height: 50vh;
        max-height: 50vh;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .contact-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .contact-buttons .me-3 {
        margin-right: 0 !important;
    }
    
    .contact-image-wrapper {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .contact-section .row.mt-5 {
        margin-top: 1.5rem !important;
    }
    
    .training-section .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .services-section .container,
    .training-section .container,
    .ceo-section .container,
    .case-studies-section .container,
    .contact-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .events-content .container,
    .presence-content .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .impact-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .events-header {
        height: 200px;
    }
    
    .presence-header {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hamburger-menu {
        top: 20px;
        right: 20px;
    }
    
    .hamburger-btn {
        padding: 8px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    .menu-dropdown {
        min-width: 160px;
        top: 45px;
    }
    
    .logo-container {
        top: 20px;
        left: 20px;
        padding: 6px;
    }
    
    .site-logo {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .about-title {
        font-size: 1.85rem;
        margin-bottom: 1.5rem;
    }
    
    .services-title {
        font-size: 1.85rem;
        margin-bottom: 1.5rem;
    }
    
    .impact-title {
        font-size: 1.85rem;
    }
    
    .training-title {
        font-size: 1.85rem;
        margin-bottom: 1.5rem;
    }
    
    .events-title {
        font-size: 1.85rem;
    }
    
    .presence-title {
        font-size: 1.85rem;
    }
    
    .ceo-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }
    
    .case-studies-title {
        font-size: 1.85rem;
    }
    
    .contact-main-title {
        font-size: 1.85rem;
    }
    
    .contact-section .row.mt-5 {
        margin-top: 1rem !important;
    }
    
    .contact-subtitle {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .about-content-wrapper {
        padding: 1rem;
    }
    
    .services-section .container,
    .training-section .container,
    .ceo-section .container,
    .case-studies-section .container,
    .contact-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .events-content .container,
    .presence-content .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .impact-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .approach-highlight {
        padding: 1rem;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .approach-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }
    
    .approach-title {
        font-size: 1.35rem;
        text-align: left;
    }
    
    .approach-description {
        font-size: 0.95rem;
        text-align: left;
    }
}

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

/* Custom Utilities */
.object-cover {
    object-fit: cover;
}

/* Section Spacing */
section {
    scroll-margin-top: 0;
}

/* Loading Animation */
.placeholder-content img {
    transition: opacity 0.3s ease;
}

.placeholder-content img:hover {
    opacity: 0.9;
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Color Variables for Consistency */
:root {
    --primary-color: #dc3545;
    --secondary-color: #2c1810;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: rgba(255, 255, 255, 0.9);
}

/* Additional Responsive Improvements */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        display: none;
    }
}

/* Responsive & A11y Improvements Overrides */
:root {
    --primary-color: #dc3545;
    --secondary-color: #2c1810;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: rgba(255, 255, 255, 0.9);
}

/* Layout tweaks */
.hero-section,
.hero-row {
    min-height: 85vh;
}

.about-section,
.about-row {
    min-height: 85vh;
}

.events-header {
    height: clamp(200px, 30vw, 300px);
}

.presence-header {
    height: clamp(200px, 30vw, 300px);
}

.contact-main-title {
    font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
}

/* Responsive overrides are already handled above in the main media queries */

/* Mobile hero layout adjustments */
@media (max-width: 768px) {
    .hero-row {
        min-height: 100vh;
        align-items: stretch;
    }
    .hero-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-img {
        height: 48vh;
        max-height: 48vh;
        object-fit: cover;
    }
    .hero-content {
        min-height: 52vh;
        display: flex;
        align-items: center;
        padding: 1.25rem;
    }
    
    .about-content-wrapper {
        min-height: 52vh;
        display: flex;
        align-items: center;
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        height: 42px;
        width: 42px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 24px;
        right: 24px;
        top: calc(env(safe-area-inset-top, 0px) + 24px);
        right: calc(env(safe-area-inset-right, 0px) + 24px);
        z-index: 1201;
    }
}

/* Mobile full-width centered menu overlay */
@media (max-width: 768px) {
    .menu-dropdown {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 24px;
        padding-left: calc(env(safe-area-inset-left, 0px) + 24px);
        padding-right: calc(env(safe-area-inset-right, 0px) + 24px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        min-width: 0;
        z-index: 1100;
    }
    .menu-dropdown .menu-list {
        width: 100%;
        max-width: 520px;
        max-height: 80vh;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        padding: 10px 0;
        scrollbar-gutter: stable both-edges;
        margin: 0 auto;
    }
    .menu-list a {
        padding: 14px 22px;
    }
}

/* Lock background scroll when menu open */
body.no-scroll {
    overflow: hidden;
}
