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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #4B4B4B;
    background-color: #F8F9FA;
    overflow-x: hidden;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(250, 112, 47, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(250, 112, 47, 0.6);
    }
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Animated Background */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(250, 112, 47, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: wave 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes wave {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Gradient Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(250, 112, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(250, 112, 47, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Color Variables */
:root {
    --orange-500: #FA702F;
    --orange-700: #D9581A;
    --orange-100: #FFF1EA;
    --orange-50: #FFF9F5;
    --black-900: #111111;
    --black-800: #1A1A1A;
    --neutral-700: #4B4B4B;
    --neutral-300: #E0E0E0;
    --neutral-100: #F8F9FA;
    --white: #FFFFFF;
}

/* Typography */
h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black-900);
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black-900);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-900);
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-900);
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--neutral-700);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--orange-700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 112, 47, 0.4);
    animation: glow 2s infinite;
}

.btn-secondary {
    background-color: transparent;
    color: var(--black-900);
    border: 1.5px solid var(--black-900);
}

.btn-secondary:hover {
    background-color: var(--black-900);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    background: rgba(17, 17, 17, 1);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5),
                0 1px 2px rgba(250, 112, 47, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    min-height: 80px;
    box-sizing: border-box;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-700) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 300ms ease;
}

.logo-container:hover .logo-icon::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

.logo-container:hover .logo-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(250, 112, 47, 0.4);
}

.logo-letter {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    transition: all 300ms ease;
    z-index: 2;
    position: relative;
}

@keyframes logoSpinIntro {
    0% {
        transform: scale(0.75) rotate(0deg);
        letter-spacing: 4px;
        opacity: 0;
    }
    60% {
        transform: scale(1.12) rotate(360deg);
        letter-spacing: 1px;
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        letter-spacing: 0;
        opacity: 1;
    }
}

.logo-letter-spin {
    animation: logoSpinIntro 3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.logo-sub {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    display: block;
    margin-top: -2px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 16px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 112, 47, 0.2);
    border-radius: 8px;
    transform: scale(0);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-500);
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--orange-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 250ms ease;
}

/* Sections */
section {
    padding: 96px 0;
}

section[data-animate] {
    position: relative;
    overflow: hidden;
}

.section-animate {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(80px);
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s ease, filter 0.9s ease;
    transition-delay: var(--section-delay, 0s);
    will-change: transform, opacity, filter;
}

.section-animate.animate-in {
    opacity: 1;
    filter: blur(0);
    transform: none;
}

.section-animate::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(250, 112, 47, 0.15), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(17, 17, 17, 0.25), transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
}

.section-animate.animate-in::before {
    opacity: 1;
}

.section-animate[data-animate="zoom-in"] {
    transform: scale(0.9) translateY(40px);
}

.section-animate[data-animate="slide-left"] {
    transform: translateX(-90px);
}

.section-animate[data-animate="slide-right"] {
    transform: translateX(90px);
}

.section-animate[data-animate="tilt-up"] {
    transform: perspective(900px) rotateX(9deg) translateY(60px);
    transform-origin: center bottom;
}

.section-animate[data-animate="rise-fade"] {
    transform: translateY(120px) scale(0.94);
}

.section-animate.animate-in[data-animate="tilt-up"] {
    transform: none;
}

.section-animate.animate-in[data-animate="slide-left"],
.section-animate.animate-in[data-animate="slide-right"],
.section-animate.animate-in[data-animate="rise-fade"],
.section-animate.animate-in[data-animate="zoom-in"] {
    transform: none;
}

.section-animate[data-animate="tilt-up"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(250, 112, 47, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.section-animate.animate-in[data-animate="tilt-up"]::after {
    opacity: 1;
}

.section-animate[data-animate="slide-left"]::after,
.section-animate[data-animate="slide-right"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250, 112, 47, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.section-animate.animate-in[data-animate="slide-left"]::after,
.section-animate.animate-in[data-animate="slide-right"]::after {
    opacity: 1;
}

.section-animate[data-animate="rise-fade"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 112, 47, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.section-animate.animate-in[data-animate="rise-fade"]::after {
    opacity: 1;
}

/* Hero section overrides */
section.hero {
    padding: 0 0 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--neutral-700);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background-color: var(--neutral-100);
    padding: 0 0 96px 0; /* No top padding, hero starts at top */
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-image-container {
    position: absolute;
    top: 80px; /* Starts exactly where navbar ends (80px from viewport top) */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); /* Viewport height minus navbar */
    z-index: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 0.75) 0%,
        rgba(17, 17, 17, 0.6) 50%,
        rgba(250, 112, 47, 0.4) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: calc(80px + 60px); /* Navbar height + content spacing */
    padding-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(250, 112, 47, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(250, 112, 47, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(250, 112, 47, 0.03) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 10;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--orange-500);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
}

.hero-tagline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-700));
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.animated-title {
    animation: animatedText 8s ease-in-out infinite;
    display: inline-block;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 25%,
        rgba(250, 112, 47, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 75%,
        rgba(255, 255, 255, 1) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 
        gradientShift 4s ease-in-out infinite,
        fadeInScale 1.2s ease-out 0.4s both;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero .btn {
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background-color: var(--white);
    color: var(--black-900);
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.hero .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto 64px;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    justify-items: center;
}

.about-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 32px;
    text-align: center;
}

/* Founder Info */
.founder-info {
    margin-bottom: 48px;
    padding: 32px;
    background-color: var(--black-900);
    border-radius: 0;
    border-left: 4px solid var(--orange-500);
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.founder-info::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 10%, rgba(250, 112, 47, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.founder-info:hover,
.founder-info:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 24px 44px rgba(17, 17, 17, 0.45);
    border-color: var(--orange-700);
}

.founder-info:hover::after,
.founder-info:focus-within::after {
    opacity: 1;
}

.founder-name {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
    animation: slideInScale 0.8s ease-out;
}

.founder-title {
    color: var(--orange-500);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    animation: slideInScale 0.8s ease-out 0.2s both;
}

.founder-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-300);
    animation: slideInScale 0.8s ease-out 0.4s both;
}

/* CEO Photo Column */
.ceo-photo-column {
    position: sticky;
    top: 100px;
}

.ceo-photo-container {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background-color: var(--black-900);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    box-shadow: 0 28px 55px rgba(17, 17, 17, 0.42);
}

.ceo-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background-color: var(--black-900);
}

.ceo-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(17, 17, 17, 0.4) 0%, 
        rgba(17, 17, 17, 0.6) 50%, 
        rgba(17, 17, 17, 0.9) 100%);
    pointer-events: none;
}

.ceo-photo-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(205deg, rgba(250, 112, 47, 0.15), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ceo-photo-container:hover,
.ceo-photo-container:focus-within {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 42px 75px rgba(17, 17, 17, 0.5);
}

.ceo-photo-container:hover::after,
.ceo-photo-container:focus-within::after {
    opacity: 1;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
    width: 100%;
}

.vm-item {
    text-align: center;
    padding: 32px;
    background-color: var(--black-900);
    border-radius: 0;
    box-shadow: none;
    border-top: 4px solid var(--orange-500);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.vm-title {
    color: var(--orange-500);
    margin-bottom: 16px;
}

.vm-content {
    color: var(--neutral-300);
}

.vm-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 112, 47, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vm-item:hover,
.vm-item:focus-within {
    transform: translateY(-12px);
    box-shadow: 0 22px 42px rgba(17, 17, 17, 0.35);
    border-color: var(--orange-700);
}

.vm-item:hover::after,
.vm-item:focus-within::after {
    opacity: 1;
}

.values {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 48px;
}

.values-card {
    background: rgba(17, 17, 17, 0.85);
    border-radius: 18px;
    padding: 40px 48px;
    max-width: 960px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(17, 17, 17, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease, border-color 0.4s ease;
}

.values-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 25% 25%, rgba(250, 112, 47, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.values-card:hover,
.values-card:focus-within {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(17, 17, 17, 0.45);
    border-color: rgba(250, 112, 47, 0.35);
}

.values-card:hover::before,
.values-card:focus-within::before {
    opacity: 1;
}

.values-title {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    width: 100%;
}

.meet-the-team {
    margin-top: 80px;
}

.team-title {
    text-align: center;
    margin-bottom: 32px;
    color: var(--black-900);
}

.team-card {
    background-color: var(--black-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.35);
}

.team-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    justify-items: stretch;
}

.team-member {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 100%;
    outline: none;
    animation: teamMemberFade 0.8s ease-out both;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    max-width: none;
}

.team-card-grid .team-member:nth-child(2) {
    animation-delay: 0.12s;
}

.team-photo-container {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
    isolation: isolate;
    max-height: 280px;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-photo-container.team-photo-ceo {
    aspect-ratio: auto;
    max-height: none;
    min-height: 320px;
    background-color: #000;
    align-items: center;
    justify-content: center;
}

.team-photo-headshot {
    object-fit: contain;
    background: #000;
    padding: 16px;
    width: 100%;
    height: 100%;
}

.team-member-content {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 24px 24px 28px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.98) 85%, rgba(250, 112, 47, 0.3) 110%);
    transform: translateY(0);
    opacity: 1;
    transition: background 0.45s ease;
    border-radius: 0 0 16px 16px;
    flex: 1;
}

.team-member-name {
    color: var(--white);
    margin: 0;
}

.team-member-role {
    color: var(--orange-500);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.team-member-preview {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin: 0;
}

.team-toggle {
    background: transparent;
    border: 1px solid rgba(250, 112, 47, 0.7);
    color: var(--orange-500);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.team-toggle:hover,
.team-toggle:focus-visible {
    background: rgba(250, 112, 47, 0.15);
    box-shadow: 0 8px 20px rgba(250, 112, 47, 0.25);
    outline: none;
}

.team-member-bio {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    margin-top: 12px;
}

.team-member::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(250, 112, 47, 0) 0%, rgba(250, 112, 47, 0.28) 55%, rgba(17, 17, 17, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.team-member:hover,
.team-member:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(250, 112, 47, 0.28);
    border-color: rgba(250, 112, 47, 0.35);
}

.team-member:hover .team-photo,
.team-member:focus-visible .team-photo {
    transform: scale(1.08);
}

.team-member:hover .team-member-content,
.team-member:focus-visible .team-member-content,
.team-member.open .team-member-content {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.98) 70%, rgba(250, 112, 47, 0.4) 120%);
}

.team-member:hover::after,
.team-member:focus-visible::after,
.team-member.open::after {
    opacity: 1;
}

.team-member:focus-visible {
    outline: 2px solid var(--orange-500);
    outline-offset: 3px;
}

@keyframes teamMemberFade {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating animation for value cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.value-item {
    position: relative;
    text-align: center;
    padding: 40px 20px 20px 20px;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
    min-height: 140px;
    width: 100%;
}

.value-item:nth-child(1) {
    animation-delay: 0s;
}

.value-item:nth-child(2) {
    animation-delay: 0.5s;
}

.value-item:nth-child(3) {
    animation-delay: 1s;
}

.value-item:nth-child(4) {
    animation-delay: 1.5s;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-500), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-item:hover {
    animation: none;
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(250, 112, 47, 0.3);
    z-index: 10;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-name {
    color: var(--orange-500);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-item:hover .value-name {
    transform: scale(1.05);
    color: var(--orange-500);
}

.value-desc {
    color: var(--neutral-300);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-item:hover .value-desc {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
}

.why-choose-us {
    background-color: var(--black-900);
    padding: 64px;
    border-radius: 0;
}

.why-title {
    text-align: center;
    margin-bottom: 48px;
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.why-item {
    text-align: center;
    padding: 24px;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-item-title {
    margin-bottom: 12px;
    color: var(--white);
}

.why-item-desc {
    color: var(--neutral-300);
}

/* Services Section */
.services {
    background-color: var(--neutral-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: #000000;
    padding: 32px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(250, 112, 47, 0.3);
}

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

.service-icon {
    width: 150px;
    height: 150px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    position: relative;
    z-index: 2;
    color: var(--white);
    margin-bottom: 16px;
}

.service-description {
    position: relative;
    z-index: 2;
    color: var(--neutral-300);
    font-size: 16px;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--white);
}

/* Brands Carousel */
.brands-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 48px;
    padding: 40px 0;
}

.brands-carousel-wrapper::before,
.brands-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.brands-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.brands-carousel {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: scroll-logos 40s linear infinite;
    will-change: transform;
    white-space: nowrap;
}

.brands-carousel-wrapper:hover .brands-carousel {
    animation-play-state: paused;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.brand-logo {
    height: 120px;
    width: auto;
    max-width: 280px;
    min-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-name {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    text-align: center;
    transition: all 0.3s ease;
    max-width: 280px;
    word-wrap: break-word;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 24px rgba(250, 112, 47, 0.3);
    border: 2px solid var(--orange-500);
}

.brand-item:hover .brand-name {
    color: var(--orange-500);
    font-weight: 600;
}

/* Boss Inches specific styling - black background */
.boss-inches-logo {
    background-color: var(--black-900) !important;
    padding: 15px 25px;
    filter: grayscale(0%) opacity(1) !important;
}

.brand-item:hover .boss-inches-logo {
    border-color: var(--orange-500);
    background-color: var(--black-900) !important;
    filter: grayscale(0%) opacity(1) !important;
}

/* Adjust brand name for Boss Inches to stand out on hover */
.brand-item:hover .boss-inches-logo + .brand-name {
    color: var(--orange-500);
    font-weight: 600;
}

.brand-logo[src=""] {
    display: none;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background-color: var(--neutral-100);
}

.faq-list {
    max-width: 860px;
    margin: 48px auto 0;
    display: grid;
    gap: 20px;
}

.faq-item {
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    background-color: var(--white);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item[open] {
    box-shadow: 0 24px 50px rgba(250, 112, 47, 0.18);
    transform: translateY(-2px);
}

.faq-summary {
    position: relative;
    list-style: none;
    padding: 26px 72px 26px 32px;
    font-size: 20px;
    font-weight: 600;
    color: var(--black-900);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-summary:hover,
.faq-summary:focus-visible {
    color: var(--orange-700);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--orange-500);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    color: var(--orange-700);
}

.faq-answer {
    padding: 0 32px 32px 32px;
    font-size: 16px;
    color: var(--neutral-700);
}

.faq-answer p {
    margin-top: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }

    .faq-summary {
        padding: 22px 56px 22px 24px;
        font-size: 18px;
    }

    .faq-summary::after {
        right: 24px;
    }

    .faq-answer {
        padding: 0 24px 24px 24px;
    }
}

/* Contact Section */
.contact {
    background-color: var(--neutral-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-subtitle {
    color: var(--orange-500);
    margin-bottom: 16px;
}

.contact-description {
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--orange-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    flex-shrink: 0;
    transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.contact-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(250, 112, 47, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.contact-item:hover,
.contact-item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.25);
    background: rgba(255, 255, 255, 0.85);
}

.contact-item:hover::after,
.contact-item:focus-within::after {
    opacity: 1;
}

.contact-item:hover .contact-icon,
.contact-item:focus-within .contact-icon {
    transform: scale(1.08);
    background-color: var(--orange-500);
    color: var(--white);
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-900);
}

/* Google Map */
.contact-map {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-map .contact-subtitle {
    color: var(--orange-500);
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--neutral-200);
    border-radius: 12px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Footer */
.footer {
    background-color: var(--black-900);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo-icon {
    background-color: var(--orange-500);
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: #CCCCCC;
}

.footer-tagline {
    color: #CCCCCC;
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-title {
    color: var(--orange-500);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 250ms ease;
}

.footer-list a:hover {
    color: var(--orange-500);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 24px;
    text-align: center;
}

.footer-developed {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-developed span {
    color: #CCCCCC;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-developed img {
    width: 72px;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(250, 112, 47, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-developed a:hover img,
.footer-developed a:focus-visible img {
    transform: translateY(-3px);
    filter: drop-shadow(0 12px 24px rgba(250, 112, 47, 0.5));
}

.footer-developed a:focus-visible {
    outline: 2px solid var(--orange-500);
    outline-offset: 4px;
}

.footer-copyright {
    color: #CCCCCC;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
    z-index: 1100;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(18, 140, 126, 0.45);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}

.whatsapp-float:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .values {
        margin: 40px auto;
        padding: 0 24px;
    }
    
    .values-card {
        padding: 32px 32px;
        max-width: 840px;
    }
    
    .team-card {
        padding: 40px 32px;
    }
    
    .team-card-grid {
        gap: 24px;
    }
    
    .team-member-content {
        padding: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .brands-carousel {
        gap: 50px;
    }
    
    .brand-logo {
        height: 90px;
        max-width: 220px;
        min-width: 150px;
        padding: 15px 25px;
    }
    
    .brand-name {
        font-size: 13px;
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    p {
        font-size: 16px;
    }
    
    /* Sections */
    section {
        padding: 64px 0;
    }
    
    .hero {
        padding: 0;
        padding-bottom: 64px;
        min-height: 80vh;
    }
    
    .hero-image-container {
        top: 80px; /* Starts exactly where navbar ends on mobile */
        height: calc(100% - 80px); /* Fills hero section minus navbar */
    }
    
    .hero .container {
        padding-top: calc(80px + 40px); /* Navbar height + spacing on mobile */
        padding-bottom: 32px;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-title {
        font-size: 40px;
        color: var(--white);
    }
    
    .animated-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .meet-the-team {
        margin-top: 64px;
    }
    
    .team-card {
        padding: 32px 24px;
        gap: 24px;
    }
    
    .team-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-member {
        min-height: auto;
    }
    
    .team-member::after {
        display: none;
    }
    
    .team-member-content {
        padding: 22px 22px 26px;
        background: rgba(17, 17, 17, 0.96);
        border-radius: 0 0 16px 16px;
    }
    
    .team-photo-container {
        border-radius: 16px 16px 0 0;
    }
    
    .team-member:hover,
    .team-member:focus-visible {
        transform: translateY(0);
        box-shadow: 0 12px 28px rgba(250, 112, 47, 0.2);
    }
    
    .team-member-bio {
        max-height: 800px;
        opacity: 1;
    }
    
    /* Founder Section Mobile */
    .founder-section {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 32px 24px;
    }
    
    .founder-name {
        font-size: 24px;
    }
    
    .founder-title {
        font-size: 16px;
    }
    
    /* About Grid Layout */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        display: contents;
    }
    
    .about-description {
        order: 0;
    }
    
    .ceo-photo-column {
        position: relative;
        top: 0;
        order: 1;
    }
    
    .founder-info {
        order: 2;
    }
    
    .vision-mission {
        order: 3;
    }
    
    .ceo-photo {
        min-height: 400px;
    }
    
    .founder-info {
        padding: 24px;
    }
    
    /* Layout */
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .contact-map .contact-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-choose-us {
        padding: 48px 32px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .values {
        margin: 28px auto;
        padding: 0 12px;
    }
    
    .values-card {
        padding: 24px 18px;
        max-width: 100%;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-item {
        padding: 24px 18px;
        min-height: auto;
    }
    
    .team-card {
        padding: 28px 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .services-grid,
    .brands-carousel-wrapper {
        padding: 30px 0;
    }
    
    .brands-carousel {
        gap: 30px;
    }
    
    .brand-logo {
        height: 70px;
        max-width: 180px;
        min-width: 120px;
        padding: 12px 20px;
    }
    
    .brand-name {
        font-size: 12px;
        max-width: 180px;
        margin-top: 8px;
    }
    
    .brands-carousel-wrapper::before,
    .brands-carousel-wrapper::after {
        width: 80px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    
    .values {
        margin: 32px auto;
        padding: 0 16px;
    }
    
    .values-card {
        padding: 28px 24px;
        max-width: 640px;
    }
    
    .value-item {
        padding: 30px 15px;
        min-height: 120px;
    }
    
    .value-name {
        font-size: 16px;
    }
    
    .value-desc {
        font-size: 13px;
    }
    
    .why-choose-us {
        padding: 32px 24px;
    }
}