:root {
    --color-bg: #e8f4fc;
    --color-bg-light: #f0f8ff;
    --color-bg-card: #ffffff;
    --color-text: #1a3a5c;
    --color-text-muted: #1f4e79;
    --color-primary: #1565c0;
    --color-primary-light: #42a5f5;
    --color-accent: #8b6a00;
    --color-accent-light: #e6c453;
    --color-gradient-start: #1565c0;
    --color-gradient-end: #00bfa5;
    --color-border: rgba(21, 101, 192, 0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 4px 20px rgba(21, 101, 192, 0.1);
    --shadow-hover: 0 8px 30px rgba(21, 101, 192, 0.15);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0 100px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(21, 101, 192, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at 30% 70%, rgba(0, 191, 165, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 86px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--color-text);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 16px;
}

.hero-principles {
    margin-top: 24px;
    padding-left: 0;
    list-style: none;
}

.hero-principles li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-weight: 500;
}

.hero-principles li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 50%;
}

.hero-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    z-index: 2;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-image-decorator {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    opacity: 0.4;
    z-index: -1;
}

.hero-image-decorator-2 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.hero-tagline {
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--color-bg-card);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--color-text);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    position: relative;
    background: var(--color-bg-card);
}

.stats::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

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

.stat-card {
    text-align: center;
    padding: 48px 24px;
    position: relative;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto 10px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.stat-number-works ,
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 500;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    margin: 0;
}


.stat-number-works span ,
.stat-number span {
    font-size: 0.6em;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: var(--color-bg);
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--color-text);
}

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

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

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.story-image:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.story-image:nth-child(2),
.story-image:nth-child(3) {
    aspect-ratio: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.08);
}

.story-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.story-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-card) 0%, var(--color-bg-light) 100%);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 200px;
    bottom: 120px;
    width: 2px;
    transform: translateX(19px);
    background: linear-gradient(to bottom, var(--color-primary-light), var(--color-gradient-end));
    opacity: 0.3;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 80px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border: 4px solid var(--color-bg-card);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.2);
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-image {
    order: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 56px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 600;
}

.timeline-title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-text);
}

.timeline-desc {
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.7;
}

.timeline-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

/* Models Section */
.models {
    padding: 80px 0;
    background: var(--color-bg);
}

.models-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 80px;
}

.model-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex:1 1 100%;
    max-width: 290px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.model-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.model-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 55%);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.08);
}

.model-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 2;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.model-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;

}
.model-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.model-badge span{
    font-size: 14px;
    color: white;
}

.model-badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
.model-badge.video {
    width: 28px;
    height: 28px;
    padding: 0;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.model-badge.video:hover {
    background: #e53935;
    border-color: #e53935;
    transform: scale(1.1);
}

.model-badge.video svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.model-name {
    font-family: var(--font-display);
    font-size: 26px;
    color: white;
    font-weight: 500;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.model-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 100%;
}

.model-location svg {
    width: 14px;
    height: 14px;
    fill: yellow;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--color-bg-card);
}

.values-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}
.value-card-wrapper{
    height: 100%;
    display: flex;
}

.value-card {
    padding: 40px 30px;
    background: var(--color-bg-light);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.value-title {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.value-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 14px;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: var(--color-bg);
}

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

.booking-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.booking-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.8;
}

.booking-highlight {
    padding: 24px;
    background: var(--color-bg-card);
    border-radius: 16px;
    border-left: 4px solid var(--color-accent);
    margin-top: 24px;
}

.booking-highlight p {
    margin-bottom: 0;
    color: var(--color-text);
    font-weight: 500;
}

.booking-image {
    position: relative;
}

.booking-image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.booking-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.models .container{
    padding: 0;
}


/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

   
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        display: none;
        /* max-width: 500px;
        margin: 0 auto; */
    }
    .hero-description{
        max-width: 100%;
    }
    .hero{
        padding: 100px 0 50px 0;
    }
    .stats,
    .values,
    .models{
        padding: 60px 0;
    }
    .stat-card{
        padding: 28px 14px;
    }
    .timeline{
        padding: 20px 0 60px;
    }
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-images {
        order: -1;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::before {
        left: 45px;
        top: 120px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-left: 60px;
    }
    .timeline-image{
        display: none;
    }

    .timeline-item::before {
        left: 1px;
        top: 20px;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        order: 1;
    }

    .timeline-item:nth-child(even) .timeline-image {
        order: 2;
    }
    .timeline-items{
        gap: 30px;
        margin-top: 0;
    }
    .hero-principles{
        margin-top: 12px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .models-flex{
        margin-top: 40px;
    }
    .story-header{
        margin-bottom: 30px;
    }
    .booking-image-wrapper{
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .timeline-year{
        font-size: 48px;
    }
    
    .model-card {
        flex: 0 1 40%;
        min-width: 140px;
    }
    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .stats {
        padding: 80px 0;
    }

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

    .stat-card {
        padding: 28px 16px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .story,
    .timeline,
    .models,
    .values,
    .booking {
        padding: 80px 0;
    }

    .story-images {
        gap: 12px;
    }


    .models-flex {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .timeline-title{
        font-size: 20px;
    }
    .value-icon{
        width: 50px;
        height: 50px;
        margin: 0 auto 12px;
    }
    .value-title{
        margin-bottom: 8px;
    }
    .value-icon svg{
        width: 24px;
        height: 24px;
    }
    .timeline-items {
        gap: 20px;
    }
    .timeline-year{
        margin-bottom: 10px;
        font-size: 32px;
    }
    .stats{
        padding: 50px 0 40px 0;
    }
    .story, .timeline, .models, .values, .booking {
        padding: 40px 0;
    }
    .models-flex{
        gap: 10px;
    }
    .model-info {
        padding: 0 10px 10px;
        display: flex;
        flex-direction: column-reverse;
    }
    .model-badge{
        margin-bottom: 0;
        padding: 2px 4px;
        border-radius: 5px;
    }
    .model-badge span {
        font-size: 10px;
    }
    .model-badge.video{
        width: 20px;
        height: 20px;
    }
    .model-name{
        font-size: 16px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
        padding: 24px;
    }

    .stat-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .stat-number-works ,
    .stat-number {
        margin-bottom: 4px;
        font-size: 36px;
    }


    .hero-image-decorator,
    .hero-image-decorator-2 {
        display: none;
    }

    .values-grid {
        gap: 10px;
        margin-top: 20px;
    }

    .value-card {
        padding: 13px 15px;
    }
    .story-header{
        margin-bottom: 10px;
    }
}