/* About Hero Section */
.about-hero {
    position: relative;
    padding: 9rem 2rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
}

.about-hero-title {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    color: white;
    margin: 0;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* About Intro Section */
.about-intro-section {
    padding: 6rem 2rem;
    background-color: white;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro-text {
    text-align: left;
}

.about-intro-tag {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.75rem;
}

.about-intro-text h2 {
    font-family: var(--font-headings);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.about-intro-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 1.5rem 0;
}

.btn-intro-contact {
    display: inline-block;
    background-color: var(--color-primary);
    color: white !important;
    padding: 0.95rem 2.25rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-intro-contact:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.about-intro-video {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Team Sections Styling */
.team-section {
    padding: 6rem 2rem;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.team-section-tag {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.team-section-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 4.5rem auto;
    line-height: 1.6;
}

.team-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.team-img-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-container img {
    transform: scale(1.04);
}

.team-info {
    padding: 1.25rem;
    text-align: center;
    background-color: white;
}

.team-name {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 0.25rem 0;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin: 0;
}

/* Services section specific overrides */
.services-section {
    background-color: white;
}

.services-section .team-section-tag {
    color: var(--color-primary);
    margin-bottom: 3.5rem;
}

/* Team Slider Styling */
.team-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--color-primary);
    color: white;
}

.slider-arrow-prev {
    left: -60px;
}

.slider-arrow-next {
    right: -60px;
}

.team-slider-container {
    width: 100%;
    overflow: hidden;
}

.team-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-slider-track .team-card {
    flex: 0 0 calc((100% - 6rem) / 4); /* Shows 4 cards */
}

/* Bachelor Party Section Styling */
.about-bachelor-section {
    padding: 6.5rem 2rem;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-bachelor-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-bachelor-text {
    text-align: left;
}

.about-bachelor-text h2 {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-bachelor-text p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-bachelor-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-bachelor-list li {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    gap: 0.75rem;
    align-items: start;
}

.about-bachelor-list li::before {
    content: "✓";
    color: var(--color-accent);
    font-weight: 800;
    flex-shrink: 0;
}

.experience-box {
    background-color: rgba(7, 15, 30, 0.35);
    border: 2px solid white;
    border-radius: var(--radius-sm);
    padding: 3rem 2rem;
    display: inline-block;
    width: 100%;
    max-width: 450px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.experience-box h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 2rem 0;
    color: white;
}

.btn-experience-call {
    display: inline-block;
    background-color: var(--color-accent);
    color: white !important;
    padding: 0.95rem 2.25rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: var(--font-headings);
    letter-spacing: 0.5px;
}

.btn-experience-call:hover {
    background-color: white;
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

/* About Page Responsive Overrides */
@media (max-width: 1300px) {
    .slider-arrow-prev {
        left: 10px;
    }
    .slider-arrow-next {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .about-intro-grid,
    .about-bachelor-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-slider-track .team-card {
        flex: 0 0 calc((100% - 4rem) / 3); /* Shows 3 cards */
    }
}

@media (max-width: 768px) {
    .team-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-slider-track .team-card {
        flex: 0 0 calc((100% - 2rem) / 2); /* Shows 2 cards */
    }
}

@media (max-width: 480px) {
    .team-grid-4 {
        grid-template-columns: 1fr;
    }

    .team-slider-track .team-card {
        flex: 0 0 100%; /* Shows 1 card */
    }

    .team-img-container {
        height: 280px;
    }
}
