* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #F8B03A;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
    color: #2E3547;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-display: swap;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    loading: lazy;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #F8B03A;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-accent {
    color: #F8B03A;
}

.gradient-text {
    background: linear-gradient(to right, #F8B03A, #e69d28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary,
.btn-primary-lg {
    background: #F8B03A;
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    padding: 0.625rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #e69d28;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-secondary {
    color: #2E3547;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: #F8B03A;
}

.btn-primary-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-primary-lg:hover {
    background: #e69d28;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.btn-secondary-lg {
    background: #ffffff;
    color: #2E3547;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid #2E3547;
    transition: all 0.3s ease;
}

.btn-secondary-lg:hover {
    background: #fef9ed;
    transform: scale(1.05);
}

.btn-secondary-mobile, .btn-primary-mobile {
    width: 100%;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.btn-secondary-mobile {
    background: transparent;
    color: #2E3547;
    border: 2px solid #2E3547;
}

.btn-primary-mobile {
    background: #F8B03A;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

.animate-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-item:nth-child(1) { animation-delay: 0.1s; }
.animate-item:nth-child(2) { animation-delay: 0.2s; }
.animate-item:nth-child(3) { animation-delay: 0.3s; }
.animate-item:nth-child(4) { animation-delay: 0.4s; }
.animate-item:nth-child(5) { animation-delay: 0.5s; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    will-change: background, box-shadow;
    contain: layout;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 25px;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #2E3547;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F8B03A;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F8B03A;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
    gap: 1rem;
}

.mobile-menu-btn {
    background: transparent;
    color: #2E3547;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    color: #2E3547;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #F8B03A;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ebee;
}

@media (min-width: 768px) {
    .nav-links, .nav-cta {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    contain: layout style paint;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #fef9ed, #ffffff, #f5f6f7);
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.blob-1 {
    top: 25%;
    left: -80px;
    width: 384px;
    height: 384px;
    background: #fbe3a8;
    animation: rotate 20s linear infinite;
}

.blob-2 {
    bottom: 25%;
    right: -80px;
    width: 384px;
    height: 384px;
    background: #b0b5be;
    animation: rotate 25s linear infinite reverse;
}

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.floating-icon svg {
    width: 32px;
    height: 32px;
    color: #F8B03A;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 40%;
    right: 20%;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 40%;
    left: 20%;
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fef9ed;
    color: #b5741a;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #5a6275;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #F8B03A;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #5a6275;
    font-weight: 500;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .floating-icons {
        display: block;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #5a6275;
    max-width: 48rem;
    margin: 0 auto;
}

section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.about {
    background: #f8fafc;
}

.about-story {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.story-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.125rem;
    color: #5a6275;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    contain: layout style paint;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-card[data-color="blue"] .value-icon {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.value-card[data-color="purple"] .value-icon {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.value-card[data-color="orange"] .value-icon {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 1rem;
}

.value-description {
    color: #5a6275;
    line-height: 1.75;
}

.differentials-section {
    margin-top: 4rem;
}

.differentials-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2E3547;
    text-align: center;
    margin-bottom: 3rem;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.differential-card {
    background: #2E3547;
    border-radius: 1rem;
    padding: 2rem;
    color: #ffffff;
    text-align: center;
    transition: transform 0.3s ease;
}

.differential-card:hover {
    transform: scale(1.05);
}

.differential-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.differential-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.differential-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.differential-description {
    color: #e9ebee;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-story {
        padding: 3rem;
    }
}

.solutions {
    background: #ffffff;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.solution-icon[data-color="blue"] {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.solution-icon[data-color="green"] {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.solution-icon[data-color="purple"] {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.solution-icon[data-color="orange"] {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.solution-icon[data-color="indigo"] {
    background: linear-gradient(to bottom right, #6366f1, #a855f7);
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.solution-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1.125rem;
    color: #5a6275;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #434b5d;
}

.solution-features svg {
    width: 20px;
    height: 20px;
    color: #F8B03A;
    flex-shrink: 0;
}

.solution-visual {
    position: relative;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.solution-visual[data-color="blue"] {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.solution-visual[data-color="green"] {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.solution-visual[data-color="purple"] {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.solution-visual[data-color="orange"] {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.solution-visual[data-color="indigo"] {
    background: linear-gradient(to bottom right, #6366f1, #a855f7);
}

.visual-icon {
    width: 128px;
    height: 128px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.visual-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
}

.visual-sublabel {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.solutions-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-subtitle {
    color: #858d9c;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .solution-item {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-item.reverse .solution-content {
        order: 2;
    }
    .solution-item.reverse .solution-visual {
        order: 1;
    }
}

.features {
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    contain: layout style paint;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-card[data-color="blue"] .feature-icon {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.feature-card[data-color="purple"] .feature-icon {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.feature-card[data-color="orange"] .feature-icon {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.feature-card[data-color="green"] .feature-icon {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.feature-card[data-color="indigo"] .feature-icon {
    background: linear-gradient(to bottom right, #6366f1, #8b5cf6);
}

.feature-card[data-color="yellow"] .feature-icon {
    background: linear-gradient(to bottom right, #eab308, #f97316);
}

.feature-card[data-color="pink"] .feature-icon {
    background: linear-gradient(to bottom right, #ec4899, #f43f5e);
}

.feature-card[data-color="teal"] .feature-icon {
    background: linear-gradient(to bottom right, #14b8a6, #06b6d4);
}

.feature-card[data-color="violet"] .feature-icon {
    background: linear-gradient(to bottom right, #8b5cf6, #a855f7);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #5a6275;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefits {
    background: #2E3547;
    color: #ffffff;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefits-description {
    font-size: 1.25rem;
    color: #e9ebee;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.benefit-item p {
    font-weight: 500;
}

@media (min-width: 768px) {
    .benefits-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-title {
        font-size: 3rem;
    }
}

.clients {
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    contain: layout style paint;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.1;
}

.quote-icon svg {
    width: 64px;
    height: 64px;
    color: #F8B03A;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    width: 20px;
    height: 20px;
    color: #eab308;
    fill: #eab308;
}

.testimonial-text {
    color: #434b5d;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

.testimonial-event {
    font-size: 0.875rem;
    color: #e69d28;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #F8B03A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 700;
    color: #2E3547;
}

.author-role {
    font-size: 0.875rem;
    color: #858d9c;
}

.event-logos-section {
    margin-top: 5rem;
}

.logos-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E3547;
    text-align: center;
    margin-bottom: 2.5rem;
}

.event-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.event-logo-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 128px;
    transition: all 0.3s ease;
}

.event-logo-card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    width: 48px;
    height: 48px;
    background: #fef9ed;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5741a;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.logo-name {
    font-size: 0.75rem;
    color: #5a6275;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.logos-note {
    text-align: center;
    color: #858d9c;
    font-style: italic;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .event-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .event-logos-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.contact {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #434b5d;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #d4d7dc;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5a6275;
    box-shadow: 0 0 0 3px rgba(90, 98, 117, 0.1);
}

.form-group textarea {
    resize: none;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-info-card.office {
    background: #2E3547;
    color: #ffffff;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card[data-color="blue"] .contact-info-icon {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.contact-info-card[data-color="green"] .contact-info-icon {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.contact-info-card[data-color="dark"] .contact-info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.contact-info-text h4 {
    font-weight: 700;
    color: #2E3547;
    margin-bottom: 0.25rem;
}

.contact-info-card.office .contact-info-text h4 {
    color: #ffffff;
}

.contact-info-text p {
    font-weight: 600;
    color: #e69d28;
}

.contact-info-card.office .contact-info-text p {
    color: #e9ebee;
}

.faq-section {
    margin-top: 5rem;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2E3547;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    transition: background 0.3s ease;
    cursor: pointer;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    font-weight: 600;
    color: #2E3547;
    padding-right: 1rem;
    font-size: 1rem;
}

.faq-item.active .faq-question span {
    color: #F8B03A;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #858d9c;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #F8B03A;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: #5a6275;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-card {
        padding: 2.5rem;
    }
}

.footer {
    background: #1a1d28;
    color: #d4d7dc;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8B03A;
    margin-bottom: 1rem;
}

.footer-description {
    color: #858d9c;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: #F8B03A;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #858d9c;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F8B03A;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #252b3a;
}

.footer-copyright {
    color: #858d9c;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #252b3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #F8B03A;
    transform: translateY(-3px) scale(1.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-icons {
        display: none;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
