/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================
   COLOR VARIABLES
   ========================================== */
:root {
    --primary-orange: #FF7F27;
    --dark-orange: #E86328;
    --black: #000000;
    --dark-gray: #515739;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

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

.highlight {
    color: var(--primary-orange);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: none;
}

.header.scrolled {
    background: var(--dark-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    font-weight: 700;
}

.logo-text-left,
.logo-text-right {
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--white);
    font-weight: 700;
}

.logo-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
}

.nav-menu a {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/corprateActivityInGurgaon.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 8rem 2rem 4rem;
    flex-direction: column;
    gap: 3rem;
    max-height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
    text-align: center;
}

.hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--primary-orange);
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-form-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    display: flex;
}

.hero-form {
    display: flex;
    width: 100%;
}

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

.form-group input,
.form-group select {
    min-width: 240px;
    padding: 12px;
    min-height: 50px;
    border: none;
    border-right: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group:first-child input {
    border-radius: 12px 0 0 12px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 39, 0.1);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-submit-btn {
    min-height: 50px;
    padding: 12px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 0 12px 12px 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-end;
    font-family: 'Roboto', sans-serif;
    width: auto;
    min-width: 150px;
}

.form-submit-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 39, 0.4);
}

.hero-cta-mobile {
    display: none;
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 2rem;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1rem;
    box-shadow: 0 4px 16px rgba(255, 127, 39, 0.3);
}

.hero-cta-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 127, 39, 0.4);
    color: var(--white);
}

.hero-form-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    display: flex;
}

.hero-form {
    display: flex;
}

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

.form-group input,
.form-group select {
    min-width: 240px;
    padding:12px;
    min-height: 50px;
    border: none;
    border-right: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group:first-child input{
    border-radius: 12px  0 0 12px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 39, 0.1);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-submit-btn {
    min-height: 50px;
    padding:12px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 0 12px 12px 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-end;
    font-family: 'Roboto', sans-serif;
    width: auto;
    min-width: 150px;
}

.form-submit-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 39, 0.4);
}

/* ==========================================
   EVENTS CALENDAR SECTION
   ========================================== */
.events-calendar {
    padding: 6rem 0;
    background: var(--light-gray);
}

.events-calendar .container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.events-grid-container {
    position: relative;
    max-width: 1180px;
    margin: 3rem auto 0;
    padding: 0;
    width: 100%;
}

.events-calendar {
    position: relative;
}

.events-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    width: 100%;
}

.events-grid::-webkit-scrollbar {
    display: none;
}

.event-card {
    position: relative;
    min-width: 320px;
    max-width: 320px;
    width: 320px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.event-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-bg {
    transform: scale(1.05);
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(81, 87, 57, 0.95) 0%, rgba(81, 87, 57, 0.85) 40%, rgba(81, 87, 57, 0.5) 70%, transparent 100%);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem 2rem 1.5rem;
    color: var(--white);
}

.event-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    line-height: 1.2;
}

.event-card-stats {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.event-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 2rem;
    transition: var(--transition);
    text-decoration: none;
    position: absolute;
    right: 2rem;
    bottom: 1.5rem;
    width: auto;
    height: auto;
    background: none;
    border: none;
    padding: 0;
}

.event-card-cta:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}


.events-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.events-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(81, 87, 57, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    outline: none;
}

.events-dot:hover {
    background: rgba(81, 87, 57, 0.5);
    transform: scale(1.2);
}

.events-dot.active {
    background: var(--primary-orange);
    width: 32px;
    height: 12px;
    border-radius: 6px;
    transform: scale(1);
}

@media (max-width: 768px) {
    .events-calendar .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .events-grid-container {
        padding: 0;
        margin-left: 0;
    width: 100%;
    }
    
    
    .event-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
        height: 400px;
    }
    
    .event-card-title {
        font-size: 1.6rem;
    }
    
    .event-card-stats {
        font-size: 0.85rem;
    }
    
    .event-card-cta {
        font-size: 1.8rem;
        right: 1.5rem;
        bottom: 1.2rem;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
}

.about-text-top {
    width: 100%;
}

.about-middle-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.about-usps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usp-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.usp-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.usp-content {
    flex: 1;
}

.usp-title {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.usp-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.about-text-bottom {
    width: 100%;
    margin-top: 2rem;
}

.about-text {
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 0;
    margin-top: 0;
}

/* ==========================================
   NUMBERS/STATISTICS SECTION
   ========================================== */
.numbers {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.numbers-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

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

.numbers-title {
    font-size: 3rem;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

.numbers .section-subtitle {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.numbers-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    width: 100%;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5rem 1rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    opacity: 0.95;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    opacity: 0.95;
    font-weight: 600;
    line-height: 1.4;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray);
    font-size: 1.1rem;
    text-align: center;
}

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

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-orange);
}

.service-icon {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

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

.service-title {
    font-size: 1.6rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-action-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.service-action-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 39, 0.3);
    color: var(--white);
}

/* ==========================================
   HOW WE WORK SECTION
   ========================================== */
.how-we-work {
    padding: 6rem 0;
    background: var(--light-gray);
}

.how-we-work-content {
    max-width: 100%;
    margin: 0 auto;
}

.how-we-work-text {
    font-size: 1.3rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.how-we-work-text strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.how-we-work-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: center;
}

.work-step {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    max-width: 280px;
}

.work-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.work-step:nth-child(1) {
    background: linear-gradient(135deg, #FF7F27 0%, #FF9F4D 100%);
    color: var(--white);
}

.work-step:nth-child(1)::before {
    background: rgba(255, 255, 255, 0.3);
}

.work-step:nth-child(2) {
    background: linear-gradient(135deg, #515739 0%, #6B7A4F 100%);
    color: var(--white);
}

.work-step:nth-child(2)::before {
    background: rgba(255, 255, 255, 0.3);
}

.work-step:nth-child(3) {
    background: linear-gradient(135deg, #FF7F27 0%, #E86328 100%);
    color: var(--white);
}

.work-step:nth-child(3)::before {
    background: rgba(255, 255, 255, 0.3);
}

.work-step:nth-child(4) {
    background: linear-gradient(135deg, #515739 0%, #3A4129 100%);
    color: var(--white);
}

.work-step:nth-child(4)::before {
    background: rgba(255, 255, 255, 0.3);
}

.work-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.work-step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.work-step-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.work-step-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--dark-gray);
    color: var(--white);
}

.footer-main {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: space-between;
}

.footer-section {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
}

.footer-about {
    flex: 0 0 380px;
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items:flex-end;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text-left,
.footer-logo .logo-text-right {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo .logo-image {
    width: 45px;
    height: 45px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 1.5rem;
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.footer-phone,
.footer-whatsapp {
    color: var(--primary-orange);
    font-weight: 600;
    transition: var(--transition);
}

.footer-phone:hover,
.footer-whatsapp:hover {
    color: var(--white);
}

.footer-tags {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition);
    cursor: default;
}

.tag:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-orange);
    transition: var(--transition);
}

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

/* ==========================================
   BUTTON STYLES
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Roboto', sans-serif;
}

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

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 39, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .numbers-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about-middle-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
    }
    
    .about-usps {
        width: 100%;
    }
    
    .about-grid {
        gap: 1.5rem;
    }
    
    .numbers-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .numbers-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 150px;
        max-width: 200px;
    }
    
    .work-step {
        flex: 1 1 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-gray);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-form-container {
        display: none;
    }
    
    .hero-cta-mobile {
        display: block;
        position: relative;
        z-index: 2;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .numbers-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        height: 400px;
    }
    
    .event-card-title {
        font-size: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-btn-prev {
        left: 0.5rem;
    }
    
    .slider-btn-next {
        right: 0.5rem;
    }
    
    .how-we-work-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .work-step {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .work-step {
        min-height: 280px;
        padding: 2.5rem 2rem;
    }
    
    .work-step-number {
        font-size: 3.5rem;
    }
    
    .work-step-title {
        font-size: 1.4rem;
    }
    
    .work-step-description {
        font-size: 1rem;
    }
    
    .numbers-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .events-calendar .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text-left,
    .logo-text-right {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-form {
        padding: 1.5rem 1rem;
    }
    
    .form-submit-btn {
        width: 100%;
        border-radius: 8px;
        align-self: stretch;
    }
    
    .services,
    .about,
    .numbers,
    .events-calendar,
    .how-we-work {
        padding: 4rem 0;
    }
    
    .section-title,
    .numbers-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .event-card {
        height: 350px;
    }
    
    .event-card-content {
        padding: 1.5rem;
    }
    
    .event-card-title {
        font-size: 1.3rem;
    }
    
    .how-we-work-text {
        font-size: 1.1rem;
    }
    
    .footer-main {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-section {
        flex: 1 1 calc(50% - 1rem);
        min-width: 250px;
    }
    
    .footer-about {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .tags-container {
        justify-content: flex-start;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ==========================================
   SMOOTH SCROLL ENHANCEMENT
   ========================================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-margin-top: 80px;
    }
}

/* Accessibility - Reduced motion */
@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;
    }
}
