/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.loading-logo svg {
    color: white;
    margin-bottom: 1rem;
    animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo span {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 2rem auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff6b6b);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: loadingText 1.5s ease-in-out infinite alternate;
}

@keyframes loadingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes loadingProgress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes loadingText {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #000;
    color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Ripple Effect for Buttons */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    width: 20px;
    height: 20px;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    z-index: 1001;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav a:hover {
    color: #000;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-social {
    display: flex;
    gap: 1rem;
}

.header-social a {
    color: #666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.header-social a:hover {
    color: #000;
}

.cta-btn {
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.mobile-menu-btn.menu-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.menu-open span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.menu-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 968px) {

    .header-social,
    .cta-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav.nav-open {
        transform: translateX(0);
    }

    .nav ul {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding: 0;
    }

    .nav li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.nav-open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav.nav-open li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav.nav-open li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav.nav-open li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav.nav-open li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav a {
        font-size: 2rem;
        font-weight: 600;
        color: #000;
        display: block;
        padding: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav a:hover {
        background-color: rgba(0, 0, 0, 0.05);
        transform: scale(1.05);
    }

    .nav a::after {
        display: none;
    }

    /* Mobile Header Adjustments */
    .header-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-actions {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroVideoFloat 8s ease-in-out infinite;
}

/* Floating animation for background video */
@keyframes heroVideoFloat {

    0%,
    100% {
        transform: scale(1) translateY(0px);
    }

    33% {
        transform: scale(1.02) translateY(-10px);
    }

    66% {
        transform: scale(1.01) translateY(5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Marquee Section */
.marquee-section {
    background: #000;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    animation: marqueeScroll 12s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-content span {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    padding: 0 2rem;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

/* Pause animation on hover */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

/* Mobile Marquee */
@media (max-width: 768px) {
    .marquee-content span {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .marquee-content {
        gap: 2rem;
        animation: marqueeScroll 8s linear infinite;
    }

    .marquee-section {
        padding: 1.5rem 0;
    }
}

/* Intro Section */
.intro-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.intro-text strong {
    color: #000;
    font-weight: 700;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    width: 100%;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    height: 400px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.portfolio-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.portfolio-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.portfolio-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.portfolio-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.portfolio-stat {
    text-align: center;
}

.portfolio-stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.portfolio-stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Model Detail Cards */
.model-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.model-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.model-detail-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.model-detail-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.model-detail-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.model-detail-body {
    padding: 2rem;
}

.model-detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.model-info-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.model-info-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.model-info-label {
    font-size: 0.9rem;
    color: #666;
}

.model-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.model-contact-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.model-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for Model Cards */
@media (max-width: 768px) {
    .portfolio-card {
        height: 350px;
    }

    .portfolio-image {
        height: 250px;
    }

    .model-detail-header {
        height: 250px;
    }

    .model-detail-overlay {
        padding: 1.5rem;
    }

    .model-detail-name {
        font-size: 1.5rem;
    }

    .model-detail-body {
        padding: 1.5rem;
    }

    .model-detail-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    margin-bottom: 0;
}

.footer-main {
    padding: 6rem 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-cta-header {
    margin-bottom: 2rem;
}

.footer-pre-title {
    font-size: 1rem;
    color: #999;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-cta-text {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-details {
    margin-bottom: 1rem;
}

.contact-details p,
.contact-details a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ccc;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation Active State */
.nav a.active {
    color: #ff6b6b;
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b6b;
    border-radius: 1px;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 2rem 0 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-text ul {
    list-style: none;
    margin: 2rem 0;
}

.about-text li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    color: #666;
}

.about-text li:last-child {
    border-bottom: none;
}

/* Models Page Styles */
.models-grid-section {
    padding: 80px 0;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.model-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.model-image {
    height: 400px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    margin-bottom: 0;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-info>p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-method p {
    color: #666;
    line-height: 1.6;
}

.social-links h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Hero Section Updates */
.hero-description {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Blocks Section */
.content-blocks-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.content-blocks {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.content-block:first-child {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: inherit;
    font-family: 'Space Grotesk', sans-serif;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.content-block:first-child p {
    color: rgba(255, 255, 255, 0.9);
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-points {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.cta-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cta-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-point p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    display: flex;
    justify-content: center;
}

.cta-button .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.comparison-list {
    display: grid;
    gap: 1.5rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-2px);
}

.comparison-list.negative .comparison-item {
    background: rgba(244, 67, 54, 0.05);
    border: 1px solid rgba(244, 67, 54, 0.1);
}

.comparison-list.positive .comparison-item {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.comparison-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.comparison-list.negative .comparison-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
}

.comparison-list.positive .comparison-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #388e3c;
}

.comparison-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-cta {
    text-align: center;
    margin-top: 4rem;
}

.comparison-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {

    .content-blocks-section,
    .cta-section,
    .comparison-section {
        padding: 4rem 0;
    }

    .content-block {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-points {
        gap: 1.5rem;
    }

    .cta-point {
        padding: 1.5rem;
    }

    .comparison-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .comparison-column h3 {
        font-size: 1.5rem;
    }

    .comparison-item {
        padding: 1rem;
    }
}

/* About Page Styles */
.about-conclusion {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.about-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: white;
}

.about-conclusion strong {
    color: white;
}

/* Model Detail Page Styles */
.model-detail-section {
    padding: 8rem 0 4rem;
    background: #f8f9fa;
}

.model-specialties {
    margin-top: 3rem;
}

.model-specialties h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-3px);
}

.specialty-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.specialty-name {
    font-weight: 600;
    color: #333;
}

.model-contact {
    margin-top: 3rem;
    text-align: center;
}

.back-to-models {
    margin-top: 4rem;
    text-align: center;
}

.model-detail-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.model-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .model-detail-section {
        padding: 6rem 0 2rem;
    }

    .model-detail-header {
        height: 300px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    margin-bottom: 0;
}

.footer-main {
    padding: 6rem 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-cta-header {
    margin-bottom: 2rem;
}

.footer-pre-title {
    font-size: 1rem;
    color: #999;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-cta-text {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-details {
    margin-bottom: 1rem;
}

.contact-details p,
.contact-details a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ccc;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

/* Footer Mobile Responsive Fixes */
@media (max-width: 768px) {
    .footer {
        overflow-x: hidden;
        width: 100%;
    }

    .footer-main {
        padding: 4rem 0 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .footer-cta-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .contact-item {
        padding: 0 1rem;
    }

    .contact-details {
        margin-bottom: 1.5rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    /* Ensure container doesn't overflow */
    .footer .container {
        max-width: 100%;
        padding: 0 1rem;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-cta-text {
        font-size: 1rem;
    }

    .footer-info {
        gap: 2rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .footer-social a {
        padding: 0.4rem;
    }

    .footer-nav {
        gap: 1rem;
    }

    .footer .container {
        padding: 0 0.75rem;
    }
}