/* Root Variables */
:root {
    --primary-color: #fdaf05;
    --dark-bg: #000000;
    --light-text: #ffffff;
    --dark-text: #1a1a1a;
    --accent-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

.info-item h4 {
    font-weight: 700;
}

.info-item p {
    font-weight: 400;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 5px solid var(--primary-color);
    transition: all var(--transition);
}

.navbar.scrolled {
    top: 0;
    border-bottom: 1px solid rgba(253, 175, 5, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition);
    filter: drop-shadow(0 4px 8px rgba(253, 175, 5, 0.3));
}

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

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

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

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 400;
    transition: color var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.arrow {
    font-size: 0.7em;
    transition: transform var(--transition);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.98);
    min-width: 250px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--light-text);
    text-decoration: none;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(253, 175, 5, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 116px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(253, 175, 5, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--light-text);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-text);
}

.btn-primary:hover {
    background-color: #ffc100;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 175, 5, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-text);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Contact link styling */
.contact-info a {
    color: var(--light-text);
    text-decoration: underline;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 1000px;
    width: 100%;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    color: var(--light-text);
    font-weight: 700;
    white-space: nowrap;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 400;
}

/* Challenges Section */
.challenges {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.challenges-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.challenges-text h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.challenges-text p {
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.challenges-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.challenge-image {
    background-color: var(--accent-gray);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.challenge-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(253, 175, 5, 0.2);
}

.challenge-image .placeholder-box {
    height: 250px;
}

.challenge-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.challenge-image h3 {
    padding: 20px;
    color: var(--light-text);
    font-size: 1.1rem;
    margin: 0;
    background-color: var(--dark-bg);
    font-weight: 700;
}

/* Why Partner Section */
.why-partner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-gray) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.why-partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.why-partner-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-partner-image {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-partner-image:hover {
    transform: translateY(-10px);
}

.why-partner-image .placeholder-box {
    height: 400px;
    border: 3px solid var(--primary-color);
}

.why-partner-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.why-partner-text p {
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.partner-stat {
    text-align: center;
    padding: 20px;
    background-color: rgba(253, 175, 5, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(253, 175, 5, 0.2);
}

.partner-stat h4 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.partner-stat p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--accent-gray);
}

.services .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 60px;
    width: min(100%, 1000px);
    padding: 0 20px;
}

.services .section-header h2,
.services .section-header p {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin: 0;
}

.services .section-header h2 {
    white-space: normal;
}

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

.service-card {
    background-color: var(--dark-bg);
    padding: 50px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card a.btn {
    margin-top: 30px;
    width: fit-content;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 175, 5, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 700;
}

.service-card p {
    color: #d0d0d0;
    line-height: 1.7;
    font-weight: 400;
}

/* Placeholder Box */
.placeholder-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--accent-gray), #1a1a1a);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.industry-card {
    background: linear-gradient(135deg, var(--accent-gray), rgba(253, 175, 5, 0.05));
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(253, 175, 5, 0.2);
    transition: all var(--transition);
    cursor: pointer;
}

.industry-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--accent-gray), rgba(253, 175, 5, 0.1));
    transform: translateX(10px);
}

.industry-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.industry-card p {
    color: #d0d0d0;
    line-height: 1.7;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-gray) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.solutions-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solutions-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.3;
}

.solutions-text p {
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.solutions-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.solution-card {
    background-color: var(--dark-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 175, 5, 0.2);
}

.solution-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.solution-card h3 {
    padding: 20px;
    color: var(--light-text);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    border-top: 3px solid var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-item p {
    color: #d0d0d0;
    font-size: 1.05rem;
}

.contact-form {
    background-color: var(--accent-gray);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(253, 175, 5, 0.2);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--dark-bg);
    border: 1px solid rgba(253, 175, 5, 0.2);
    border-radius: 4px;
    color: var(--light-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
}

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

.contact-form textarea {
    resize: vertical;
}

.contact-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    padding: 20px;
}

.contact-modal {
    width: 100%;
    max-width: 500px;
    background: #111;
    border: 1px solid rgba(253, 175, 5, 0.35);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    text-align: center;
    color: #fff;
    position: relative;
}

.contact-modal h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.contact-modal p {
    margin-bottom: 28px;
    color: #d1d1d1;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.contact-modal .btn {
    margin-top: 8px;
}

/* Thank You Section */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gray) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px 20px;
}

.thank-you-container {
    text-align: center;
    max-width: 600px;
}

.thank-you-logo {
    margin-bottom: 40px;
}

.thank-you-logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(253, 175, 5, 0.3));
}

.thank-you-box {
    background-color: rgba(42, 42, 42, 0.5);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

.thank-you-box h1 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-box p {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(253, 175, 5, 0.2);
    padding: 30px 0;
    text-align: center;
    color: #888;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {

    .navbar {
        top: 0;
    }

    .navbar.scrolled {
        top: 0;
    }
    .hamburger {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        gap: 0;
        padding: 20px 0;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list {
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav-list {
        align-items: center;
        justify-content: center;
    }

    .nav-list li {
        padding: 15px 0;
        width: 100%;
    }

    .nav-link,
    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition), opacity var(--transition), visibility var(--transition);
        padding: 12px 0;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-item {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .dropdown-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding: 24px 18px 18px;
        max-width: 440px;
        margin: 0 auto;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 24px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 360px;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 30px;
    }

    .why-partner-content {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        justify-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .section-header {
        text-align: center !important;
    }

    .why-partner-images,
    .why-partner-text {
        width: 100%;
    }

    .why-partner-image {
        max-width: 100%;
    }

    /* Prevent horizontal overflow and ensure image centers */
    .why-partner {
        overflow-x: hidden;
    }

    .why-partner-images {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .why-partner-image .placeholder-box {
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .challenges-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .challenges-text {
        text-align: center;
        margin: 0 auto;
        max-width: 720px;
    }

    .challenges-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .challenge-image {
        border-radius: 12px;
    }

    .challenge-image img {
        height: 220px;
    }

    .why-partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .why-partner-images {
        justify-content: center;
    }

    .why-partner-image {
        order: 2;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .why-partner-image .placeholder-box {
        height: 350px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form,
    .why-partner-text,
    .service-card,
    .industry-card,
    .solution-card {
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .contact-info .info-item {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 25px;
    }

    .hero-content {
        padding: 40px 20px 20px;
    }

    .challenges-text,
    .why-partner-text,
    .section-header,
    .hero-content,
    .contact-info,
    .contact-form,
    .service-card,
    .solution-card,
    .industry-card,
    .thank-you-box,
    .thank-you-container {
        text-align: center;
    }

    .service-card,
    .solution-card,
    .industry-card {
        align-items: center;
    }

    .service-card h3,
    .service-card p,
    .solution-card h3,
    .solution-card p,
    .industry-card h3,
    .industry-card p {
        text-align: center;
    }

    .service-card a.btn,
    .solution-card a.btn,
    .industry-card a.btn {
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .section-header h2 {
        white-space: normal;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        max-width: 95%;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.6rem;
        white-space: normal;
        word-wrap: break-word;
        margin-bottom: 14px;
    }

    .section-header p,
    .section-subtitle,
    .why-partner-text p,
    .challenges-text p,
    .service-card p,
    .industry-card p,
    .solution-card p,
    .thank-you-box p {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .service-card h3,
    .industry-card h3,
    .solution-card h3,
    .challenge-image h3,
    .why-partner-text h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .industry-card {
        padding: 18px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .challenge-image img {
        height: 200px;
    }

    .challenge-image h3 {
        padding: 15px;
        font-size: 1rem;
    }

    .why-partner-image .placeholder-box {
        height: 300px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

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

    .thank-you-box {
        padding: 30px 20px;
    }

    .thank-you-box h1 {
        font-size: 2rem;
    }

    .thank-you-box p {
        font-size: 1rem;
    }

    .thank-you-logo img {
        max-width: 200px;
    }

    .challenges-content {
        padding: 0 10px;
    }

    .why-partner-content {
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

#contact-confirmation-modal {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1500;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

#contact-confirmation-modal.active {
    display: flex;
}

#contact-confirmation-modal .modal-card {
    width: 100%;
    max-width: 520px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(253, 175, 5, 0.55);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    padding: 30px 25px;
    text-align: center;
}

#contact-confirmation-modal h2 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
}

#contact-confirmation-modal p {
    color: #d0d0d0;
    line-height: 1.75;
    margin-bottom: 26px;
    font-size: 1rem;
}

#contact-confirmation-modal .modal-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

#contact-confirmation-modal .btn {
    width: auto;
    min-width: 140px;
    padding: 12px 24px;
}

