/* Font Faces */
@font-face {
    font-family: 'Texta Bold';
    src: url('../assets/fonts/TextaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Texta Medium';
    src: url('../assets/fonts/TextaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../assets/fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FSP DEMO';
    src: url('../assets/fonts/FONTSPRING-DEMO-ORGANETTO-EXTULTRABOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins ExtraBold';
    src: url('../assets/fonts/POPPINS-EXTRABOLD.TTF') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins SemiBold';
    src: url('../assets/fonts/POPPINS-SEMIBOLD.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Dubai';
    src: url('../assets/fonts/Dubai-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Dubai';
    src: url('../assets/fonts/Dubai-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Texta Medium', 'Arial', 'Helvetica', sans-serif;
    background-color: #2C2C2C;
    color: #FFFFFF;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: relative;
    padding: 30px 0;
    z-index: 100;
    height: auto;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Decorative Arrows */
.decorative-arrows {
    display: flex;
    gap: 8px;
}

.arrow {
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1;
}

/* Navigation */
.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Texta Bold', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF8C00;
}

/* Search */
.search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    width: 80px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    outline: none;
    color: #FFFFFF;
    font-family: 'Texta Medium', 'Arial', sans-serif;
    font-size: 14px;
    padding: 5px 0;
    transition: width 0.3s ease, border-color 0.3s ease;
}

.search-input::placeholder {
    color: transparent;
}

.search-input:focus {
    width: 150px;
    border-bottom-color: #FF8C00;
}

.search-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Content */
.main {
    position: relative;
    width: 100%;
    z-index: 10;
}

.main section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.main section.marquee-banner {
    height: auto;
    min-height: auto;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    padding: 0 40px;
}

/* Hero Text Section */
.hero-text-section {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

/* Meta Wrap Image */
.meta-wrap-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.meta-wrap-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins SemiBold', 'Poppins', 'Arial', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.hero-title {
    font-size: 65px;
    font-weight: 600;
    font-family: 'Poppins SemiBold', 'Poppins', 'Arial', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.hero-title span {
    display: block;
}

/* Hero Image Section */
.hero-image-section {
    flex: 0 0 55%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-car-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 30px rgba(0, 150, 255, 0.3));
}

/* Decorative Plus Signs */
.decorative-plus-bottom-left {
    position: fixed;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.decorative-plus-bottom-right {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.plus {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

/* Features Section */
.features-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Features Background */
.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.features-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.features-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
}


/* Feature Blocks */
.feature-block {
    position: absolute;
    z-index: 20;
    max-width: 226px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    order: 1;
}

.feature-line-image {
    width: 100%;
    height: 140px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    order: 2;
    margin-top: 5px;
}

.feature-title {
    font-family: 'Texta Bold', 'Arial', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FF8C00;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    margin: 0;
}

.feature-description {
    font-family: 'Texta Medium', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

/* Feature Block 1 - CLARITY (Top Left) */
.feature-block-1 {
    top: 32%;
    left: 5%;
}

/* Feature Block 2 - ADHESIVE (Bottom Left) */
.feature-block-2 {
    top: 14%;
    left: 26%;
}

/* Feature Block 3 - STRETCH (Top Right) */
.feature-block-3 {
    top: 16%;
    right: 18%;
}

.feature-block-3 .feature-line-image {
    width: 120px;
}

/* Feature Block 4 - WARRANTY (Bottom Right) */
.feature-block-4 {
    bottom: 42%;
    right: 3%;
}

/* Platinum Section */
.platinum-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Platinum Background */
.platinum-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.platinum-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.platinum-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Platinum Text Section */
.platinum-text-section {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 40px;
    z-index: 20;
}

/* Platinum Title */
.platinum-title-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

.platinum-title-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Platinum Subtitle */
.platinum-subtitle-wrapper {
    width: 100%;
    max-width: 700px;
    margin-top: 10px;
    margin-left: 76px;
    display: flex;
    flex-direction: column;

}

.platinum-infinite {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 132px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.6;
    margin: 0;
    padding: 0;
}

.platinum-brilliance {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 132px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Platinum Description */
.platinum-description {
    font-family: 'Texta Medium', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 457px;
}

/* Platinum Buttons */
.platinum-buttons,
.ultimate-buttons,
.ghost-buttons,
.trex-buttons,
.hybrix-buttons {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    align-items: flex-start;
}

.platinum-btn,
.ultimate-btn,
.ghost-btn,
.trex-btn,
.hybrix-btn {
    font-family: 'Texta Bold', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 50px 15px 40px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    letter-spacing: 1px;

}

.platinum-btn-learn,
.ultimate-btn-learn,
.ghost-btn-learn,
.trex-btn-learn,
.hybrix-btn-learn {

    color: #000000;

    padding-right: 45px;
}

.platinum-btn-learn:hover,
.ultimate-btn-learn:hover,
.ghost-btn-learn:hover,
.trex-btn-learn:hover {
    transform: translateY(-3px) scale(1.02);

}

.platinum-btn-shop,
.ultimate-btn-shop,
.ghost-btn-shop,
.trex-btn-shop,
.hybrix-btn-shop {

    color: #FFFFFF;

    margin-left: -25px;
    padding-left: 50px;
    padding-right: 45px;
}

.platinum-btn-shop:hover,
.ultimate-btn-shop:hover,
.ghost-btn-shop:hover,
.trex-btn-shop:hover {
    transform: translateY(-3px) scale(1.02);

}

.platinum-btn .btn-text,
.ultimate-btn .btn-text,
.ghost-btn .btn-text,
.trex-btn .btn-text,
.hybrix-btn .btn-text {
    position: relative;
    z-index: 3;
    white-space: nowrap;
}

.platinum-btn .btn-curve,
.ultimate-btn .btn-curve,
.ghost-btn .btn-curve,
.trex-btn .btn-curve,
.hybrix-btn .btn-curve {
    position: absolute;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    z-index: 2;
    width: 100%;
}

/* Platinum Decorative */
.platinum-decorative {
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: 15;
    max-width: 400px;
}

.platinum-decorative-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Platinum Logo */
.platinum-logo {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 20;
    max-width: 300px;
}

.platinum-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Ultimate Section */
.ultimate-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Ultimate Background */
.ultimate-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.ultimate-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ultimate-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Ultimate Text Section */
.ultimate-text-section {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-right: 40px;
    z-index: 20;
    align-items: flex-end;
    text-align: right;
}

/* Ultimate Title */
.ultimate-title {
    font-family: 'FSP DEMO', 'Arial', sans-serif;
    font-size: 111px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

/* Ultimate Subtitle */
.ultimate-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    margin-right: 76px;
}

.ultimate-majestic {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 132px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.6;
    margin: 0;
    padding: 0;
}

.ultimate-clarity {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 132px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Ultimate Description */
.ultimate-description {
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
    font-size: 18px;

    color: #FFFFFF;
    line-height: 1.6;
    max-width: 600px;
    text-align: right;
    margin-top: 20px;
}

.ultimate-description strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}

/* Platinum Description - Update to Poppins ExtraBold */
.platinum-description {
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 457px;
    margin-bottom: 20px;
}

.platinum-description strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}

/* Ultimate Logo */
.ultimate-logo {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 20;
    max-width: 300px;
}

.ultimate-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Ghost Section */
.ghost-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Ghost Background */
.ghost-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.ghost-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ghost-curve-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    z-index: 1;
}

.ghost-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Ghost Text Section */
.ghost-text-section {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 40px;
    z-index: 20;
}

/* Ghost Title */
.ghost-title-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.ghost-title-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Ghost Subtitle */
.ghost-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 76px;
    margin-top: -100px;
}

.ghost-stealth {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 132px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.6;
    margin: 0;
    padding: 0;
}

.ghost-elegance {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 132px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Ghost Description */
.ghost-description {
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 600px;
    margin-top: 20px;
}

.ghost-description strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}


/* Ghost Logo */
.ghost-logo {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 20;
    max-width: 300px;
}

.ghost-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* T-Rex Section */
.trex-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #C5AA82;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.trex-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.trex-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trex-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    object-fit: contain;
    object-position: right center;
    z-index: 1;
}

.trex-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.trex-text-section {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 40px;
    z-index: 20;
}

.trex-title-wrapper {
    width: 100%;
    max-width: 520px;
}

.trex-title-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.trex-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    margin-left: 50px;
}

.trex-maximum {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.8;
    margin: 0;
    padding: 0;
}

.trex-protection {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.trex-description {
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 520px;
    margin-top: 20px;
    position: absolute;
    right: 5%;
    bottom: 18%;
}

.trex-description strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}


.trex-dino {
    position: absolute;
    bottom: 12%;
    left: 6%;
    z-index: 15;
    max-width: 220px;
}

.trex-dino-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.trex-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 12;
    pointer-events: none;
}

.trex-mountains-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.trex-logo {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 20;
    max-width: 300px;
}

.trex-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.trex-buttons {
    z-index: 21;
    position: absolute;
    bottom: 10%;
    left: 5%;
}

/* Hybrix Section */
.hybrix-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #F47B2E;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hybrix-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hybrix-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hybrix-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    object-fit: contain;
    object-position: right center;
    z-index: 1;
}

.hybrix-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hybrix-text-section {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 40px;
    z-index: 20;
}

.hybrix-title-wrapper {
    width: 100%;
    max-width: 540px;
}

.hybrix-title-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hybrix-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: -100px;
    margin-left: 100px;
}

.hybrix-superior {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.8;
    margin: 0;
    padding: 0;
}

.hybrix-hydrophobic {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.hybrix-description {
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 520px;
    margin-top: 20px;
}

.hybrix-description strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}


.hybrix-logo {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 20;
    max-width: 300px;
}

.hybrix-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.trex-buttons {
    z-index: 21;
    position: absolute;
    bottom: 10%;
    left: 5%;
}

.lineup-section {
    position: relative;
    width: 100%;
    background-color: #1F2127;
    padding: 90px 40px;
    display: flex;
    justify-content: center;
}

.lineup-content {
    width: 100%;
    max-width: 1320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lineup-header {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-bottom: 50px;
}

.lineup-title {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 58px;
    letter-spacing: 5px;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 0 12px;
}

.lineup-divider {
    flex: 1;

    height: 5px;
    background-color: #F47B2E;
    border-radius: 999px;
    opacity: 0.85;
}

.lineup-row {
    display: flex;


}

.lineup-row--bottom {
    margin-left: auto;
    margin-right: auto;
    padding-right: 190px;
}

.lineup-row .lineup-card:first-child {
    margin-right: -60px;
}

.lineup-row .lineup-card:nth-child(3) {
    margin-left: -60px;
}

.lineup-card {
    position: relative;
    width: 431px;
    height: 310px;

    border-radius: 22px;
    transform: skewX(-18deg);

}

.lineup-row--bottom .lineup-card {
    width: 431px;
    height: 310px;
}

.lineup-image {
    width: 100%;
    object-fit: cover;
    transform: skewX(18deg) scale(1.08);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.lineup-card:hover .lineup-image {
    transform: skewX(18deg) scale(1.15);
}

.lineup-label {
    position: absolute;
    top: 24px;
    left: 32px;
    font-family: 'FSP DEMO', 'Arial', sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.lineup-label-hyphen {
    font-family: 'Bebas Neue', 'Texta Bold', 'Arial', sans-serif;
    letter-spacing: 0;
    margin: 0 2px;
}

.lineup-logo {
    position: absolute;
    right: 5%;
    bottom: 5%;
}

.lineup-logo-image {
    width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}

.trex-buttons {
    z-index: 21;
    position: absolute;
    bottom: 10%;
    left: 5%;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .meta-wrap-image {
        max-width: 550px;
    }

    .hero-title {
        font-size: 65px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .trex-title-wrapper {
        max-width: 565px;
    }

    .trex-maximum {
        font-size: 132px;
    }

    .trex-protection {
        font-size: 132px;
    }

    .trex-description {
        font-size: 16px;
    }

    .hybrix-title-wrapper {
        max-width: 460px;
    }

    .hybrix-superior,
    .hybrix-hydrophobic {
        font-size: 100px;
    }

    .hybrix-description {
        font-size: 16px;
    }

    .lineup-title {
        font-size: 60px;
    }


    .lineup-card {
        width: 431px;
        height: 310px;
    }

    .lineup-row--bottom .lineup-card {
        width: 431px;
        height: 310px;
    }

    .lineup-label {
        font-size: 32px;
        top: 22px;
        left: 55%;
        transform: translateX(-50%) skewX(18deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .nav-list {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header .container {
        flex-direction: column;
        align-items: center;
    }

    .search {
        margin-top: 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .meta-wrap-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .decorative-plus-bottom-left,
    .decorative-plus-bottom-right {
        display: none;
    }

    /* Features Section Responsive */
    .features-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .feature-block {
        position: relative;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .feature-block-1,
    .feature-block-2,
    .feature-block-3,
    .feature-block-4 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .feature-line-image {
        max-width: 100%;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 12px;
    }

    /* Platinum Section Responsive */
    .platinum-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .platinum-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .platinum-text-section {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .platinum-title-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .platinum-subtitle-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .platinum-infinite {
        font-size: 40px;
        -webkit-text-stroke: 1.5px #FFFFFF;
    }

    .platinum-brilliance {
        font-size: 50px;
    }

    .platinum-description {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
    }

    .platinum-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .platinum-btn {
        width: 100%;
        text-align: center;
        padding: 12px 40px 12px 30px;
        font-size: 14px;
        margin-left: 0;
    }

    .platinum-btn-shop {
        margin-left: 0;
        padding-left: 30px;
    }

    .platinum-btn .btn-curve {
        width: 35px;
    }

    .platinum-decorative {
        position: relative;
        top: auto;
        right: auto;
        max-width: 250px;
        margin: 20px auto;
    }

    .platinum-logo {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 200px;
        margin: 20px auto 0;
    }

    /* Ultimate Section Responsive */
    .ultimate-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .ultimate-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .ultimate-text-section {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .ultimate-title {
        font-size: 60px;
    }

    .ultimate-subtitle-wrapper {
        align-items: center;
    }

    .ultimate-majestic {
        font-size: 50px;
        -webkit-text-stroke: 1.5px #FFFFFF;
    }

    .ultimate-clarity {
        font-size: 50px;
    }

    .ultimate-description {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
    }

    .ultimate-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .ultimate-btn {
        width: 100%;
        text-align: center;
        padding: 12px 40px 12px 30px;
        font-size: 14px;
        margin-left: 0;
    }

    .ultimate-btn-shop {
        margin-left: 0;
        padding-left: 30px;
    }

    .ultimate-btn .btn-curve {
        width: 35px;
    }

    .ultimate-logo {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 200px;
        margin: 20px auto 0;
    }

    /* Ghost Section Responsive */
    .ghost-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .ghost-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .ghost-text-section {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .ghost-title-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .ghost-subtitle-wrapper {
        align-items: center;
        margin-left: 0;
    }

    .ghost-stealth {
        font-size: 50px;
        -webkit-text-stroke: 1.5px #FFFFFF;
    }

    .ghost-elegance {
        font-size: 50px;
    }

    .ghost-description {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
    }

    .ghost-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .ghost-btn {
        width: 100%;
        text-align: center;
        padding: 12px 40px 12px 30px;
        font-size: 14px;
        margin-left: 0;
    }

    .ghost-btn-shop {
        margin-left: 0;
        padding-left: 30px;
    }

    .ghost-btn .btn-curve {
        width: 35px;
    }

    .ghost-logo {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 200px;
        margin: 20px auto 0;
    }

    /* T-Rex Section Responsive */
    .trex-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .trex-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .trex-text-section {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .trex-title-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .trex-subtitle-wrapper {
        align-items: center;
    }

    .trex-maximum {
        font-size: 50px;
        -webkit-text-stroke: 1.5px #FFFFFF;
    }

    .trex-protection {
        font-size: 50px;
    }

    .trex-description {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
    }

    .trex-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .trex-btn {
        width: 100%;
        text-align: center;
        padding: 12px 40px 12px 30px;
        font-size: 14px;
        margin-left: 0;
    }

    .trex-btn-shop {
        margin-left: 0;
        padding-left: 30px;
    }

    .trex-btn .btn-curve {
        width: 35px;
    }

    .trex-dino {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 150px;
        margin: 20px auto;
    }

    .trex-logo {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 200px;
        margin: 20px auto 0;
    }

    .hybrix-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .hybrix-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .hybrix-text-section {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .hybrix-title-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .hybrix-subtitle-wrapper {
        align-items: center;
        margin-left: 0;
        margin-top: 0;
    }

    .hybrix-superior,
    .hybrix-hydrophobic {
        font-size: 50px;
    }

    .hybrix-description {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
    }

    .hybrix-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .hybrix-btn {
        width: 100%;
        text-align: center;
        padding: 12px 40px 12px 30px;
        font-size: 14px;
        margin-left: 0;
    }

    .hybrix-btn-shop {
        margin-left: 0;
        padding-left: 30px;
    }

    .hybrix-btn .btn-curve {
        width: 35px;
    }

    .hybrix-logo {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 200px;
        margin: 20px auto 0;
    }

    .lineup-section {
        padding: 60px 20px;
        height: auto;
    }

    .lineup-content {
        gap: 28px;
    }

    .lineup-header {
        flex-direction: column;
        gap: 12px;
    }

    .lineup-title {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .lineup-divider {
        width: 140px;
        height: 4px;
    }

    .lineup-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .lineup-row--bottom {
        margin-left: 0;
        padding-right: 0;
    }

    .lineup-card,
    .lineup-row--bottom .lineup-card {
        width: 240px;
        height: 140px;
        transform: skewX(-10deg);
        border-radius: 14px;
    }

    .lineup-image {
        transform: skewX(10deg) scale(1.08);
    }

    .lineup-label {
        font-size: 28px;
        top: 14px;
        left: 16px;
    }

    .lineup-label-hyphen {
        margin: 0 2px;
    }

    .lineup-logo-image {
        width: 170px;
    }
}

@media (max-width: 1200px) {
    .corel-specs__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .corel-specs__logo {
        align-self: flex-start;
    }

    .corel-features__list {
        gap: 14px;
    }

    .corel-features__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .corel-features__button {
        align-self: flex-start;
    }

    .corel-footer__content {
        flex-direction: column;
        align-items: flex-start;
        min-height: 300px;
    }

    .corel-footer__socials {
        position: static;
        margin-top: 20px;
        z-index: 10;
        pointer-events: auto;
    }

    .feature-block {
        max-width: 250px;
    }

    .feature-title {
        font-size: 28px;
    }

    .feature-description {
        font-size: 13px;
    }
}

/* ================================
   Corel Platinum Page Styles
   ================================ */

.corel-body {
    background-color: #040404;
    color: #E6E6E6;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.corel-body .background-image {
    display: none;
}

.top-bar {
    background-color: #FFFFFF;
    color: #141414;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 0;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar__contact {
    font-weight: 600;
    text-transform: uppercase;
}

.top-bar__socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar__social-link {
    display: inline-flex;
    width: 26px;
    height: 26px;
}

.top-bar__social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.corel-main {
    position: relative;
    z-index: 1;
    background-color: #040404;
}

.corel-hero {
    position: relative;
    padding: 220px 0 100px;
    margin-top: -140px;
    background: url('../assets/images/hero-bg.avif') center center / cover no-repeat;
    overflow: hidden;
}



.corel-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 40px;
}

.corel-hero__text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    margin-top: 55px;
}

.corel-hero__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    letter-spacing: 2px;
    align-items: flex-start;
}

.corel-hero__title-image {
    max-width: 620px;
    width: 100%;
}

.corel-hero__title-outline {
    font-size: 132px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px rgba(245, 245, 245, 0.3);
    letter-spacing: 6px;
    line-height: 0.6;
    margin-top: 36px;
    font-family: 'Bebas Neue', sans-serif;
}

.corel-hero__title-secondary {
    font-size: 132px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Bebas Neue', sans-serif;
}

.corel-hero__text p {
    font-size: 16px;
    text-align: left;
    line-height: 1.8;
    color: rgba(230, 230, 230, 0.9);
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.corel-hero__text p strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;

}

.corel-hero-car {
    background-color: #040404;
}

.corel-hero-car__image {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.corel-specs {
    background-color: #000000;
    padding: 80px 0 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.corel-specs__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 30px;
    width: 100%;
}

.corel-specs__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 18px;
    text-align: left;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.corel-specs__list li {
    color: rgba(230, 230, 230, 0.85);
    letter-spacing: 0.5px;
}

.corel-specs__list li span {
    display: inline-block;
    min-width: 130px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.corel-specs__logo img {
    max-width: 240px;
    width: 100%;
}

.corel-specs__description {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(230, 230, 230, 0.75);
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.corel-features {
    background-color: #000000;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.corel-features__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.corel-features__text {
    flex: 1;
}

.corel-features__title {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.corel-features__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
    color: rgba(230, 230, 230, 0.9);
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.corel-features__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 60px 18px 50px;
    background: url('../assets/images/section-3-curve-normal.avif') center center / contain no-repeat;
    color: #0E0E0E;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 22px;
    min-width: 220px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.corel-features__button:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.5));
}

.corel-footer {
    position: relative;
    padding: 160px 0 60px;
    background: url('../assets/images/footer-bg.avif') center bottom / cover no-repeat;
    overflow: hidden;
}

.corel-footer__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.corel-footer__content {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.corel-footer__branding {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.corel-footer__logo {
    width: 160px;
}

.corel-footer__subtitle-image {
    width: 350px;
    margin-top: 35px;
}

.corel-footer__description {
    font-size: 14px;
    letter-spacing: 4px;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.corel-footer__socials {
    position: absolute;
    bottom: 12%;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    pointer-events: auto;
}

.corel-footer__social-link {
    display: inline-flex;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 11;
    pointer-events: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.corel-footer__social-link:hover {
    transform: scale(1.1);
}

.corel-footer__social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* ================================
   Ultimate Page Overrides
   ================================ */
.ultimate-body {
    background-color: #040404;
    color: #E6E6E6;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.ultimate-body .background-image {
    display: none;
}

.ultimate-body .ultimate-hero {
    background: url('../assets/images/ultimate-majesty-clarity-bg.avif') center top / cover no-repeat;
}



.ultimate-hero__title {
    gap: 12px;
}

.ultimate-hero__title-primary {
    font-family: 'FSP DEMO', sans-serif;
    font-size: 140px;
    letter-spacing: 10px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
}

.ultimate-hero__title-outline {
    font-size: 120px;
    letter-spacing: 8px;
    line-height: 0.7;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
}

.ultimate-hero__title-secondary {
    font-size: 120px;
    letter-spacing: 4px;
    color: #FFFFFF;
}

.ultimate-body .corel-hero__text {
    max-width: 720px;
}

.ultimate-body .corel-hero-car {
    background: #040404;
}

.ultimate-car-section {
    position: relative;
    overflow: hidden;
}

.ultimate-car-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ultimate-car-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.ultimate-car-section__content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ultimate-car-section__content p {
    font-size: 18px;
    line-height: 1.9;
    color: #FFFFFF;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.ultimate-car-section__content p strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
    font-size: 21px;
}

.ghost-body {
    background-color: #050505;
    color: #E8E8E8;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.ghost-main {
    background: url('../assets/images/black-fabric-bg.avif') center top / cover no-repeat;
}

.ghost-hero {
    background: transparent;
    padding: 111px 0 120px;
    margin-top: -140px;
}

.ghost-hero__content {
    align-items: center;
    text-align: center;
}

.ghost-hero__title {
    margin-top: 200px;
    margin-left: 50px;
}



.ghost-hero__title-image {
    width: 800px;
    max-width: 100%;
    position: absolute;
    top: -35%;
    left: 50px;

}

.ghost-hero__subtitle-outline {
    font-size: 120px;
    font-family: 'Bebas Neue', sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
    letter-spacing: 8px;
    line-height: 0.7;

}

.ghost-hero__subtitle-solid {
    font-size: 120px;
    font-family: 'Bebas Neue', sans-serif;
    color: #FFFFFF;
    letter-spacing: 6px;
}

.ghost-car-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 100px 0 60px;
    background: url('../assets/images/black-car-bg.avif') center center / cover no-repeat;
}

.ghost-car-section__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
}

.ghost-car-section__text {
    text-align: left;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.86);
}

.ghost-car-section__text strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}

.ghost-specs {
    background: transparent;
}

.ghost-specs .corel-specs__description {
    color: rgba(255, 255, 255, 0.8);
}

.ghost-features {
    background: transparent;
}

.trex-body {
    background-color: #d4b68a;
    color: #FFFFFF;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}



.trex-hero {
    padding: 240px 0 140px;
    margin-top: -140px;
    position: relative;
    overflow: hidden;
    background: url('../assets/images/trex-hero-bg.avif') top center / cover no-repeat;
}

.trex-hero__mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: url('../assets/images/full-page-mountains.avif') bottom center / cover no-repeat;
    aspect-ratio: 2000 / 474;
}

.trex-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.trex-hero__visuals {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.trex-hero__dino {
    max-width: 360px;
    width: 28%;
    transform: scaleX(-1);
    position: absolute;
    right: 40px;
    bottom: -27%;
}

.trex-hero__title {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.trex-hero__title-image {
    width: 600px;
    max-width: 100%;
}

.trex-hero__heading {
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 6px;
    margin-left: 100px;
}

.trex-hero__heading-outline {
    font-size: 132px;
    color: transparent;
    -webkit-text-stroke: 2px #FFFFFF;
}

.trex-hero__heading-solid {
    font-size: 132px;
    color: #FFFFFF;
}

.trex-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 4px;
    color: #2f1c08;
}

.trex-sand-section {
    background: url('../assets/images/rang-rover-bg.avif') center center / cover no-repeat;
    padding: 160px 0;
}

.trex-sand-section__content {

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trex-sand-description {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(47, 28, 8, 0.85);

}

.trex-sand-description strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}

.trex-specs {
    background: url('../assets/images/waves-bg.avif') center center / cover no-repeat;
    padding: 80px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.trex-specs .corel-specs__list li {
    color: rgba(255, 255, 255, 0.9);
}

.trex-specs .corel-specs__list li span {
    color: #FFFFFF;
}

.trex-specs .corel-specs__description {
    color: rgba(255, 255, 255, 0.85);
}

.trex-features {
    background: url('../assets/images/black-rang-rover-bg.avif') center center / cover no-repeat;
}

.trex-footer {
    background: url('../assets/images/footer-bg.avif') center bottom / cover no-repeat;
}

@media (max-width: 1200px) {
    .trex-hero__visuals {
        flex-direction: column;
        align-items: flex-start;
    }

    .trex-hero__dino {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .trex-hero {
        padding: 160px 0 100px;
    }

    .trex-hero__heading-outline,
    .trex-hero__heading-solid {
        font-size: 70px;
    }

    .trex-features-section__content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================
   Hybrix Page Styles
   ================================ */
.hybrix-body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.hybrix-main {
    background-color: #000000;
}

.hybrix-hero {
    background: #000000;
    padding: 220px 0 100px;
    margin-top: -140px;
}

.hybrix-hero__content {
    position: relative;
}

.hybrix-hero__title-image {
    position: absolute;
    max-width: 620px;
    width: 100%;
    top: -194px;
    left: 0;
    z-index: 2;
}

.hybrix-hero__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    letter-spacing: 2px;
    align-items: flex-start;
}

.hybrix-hero__subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 132px;
    letter-spacing: 6px;
}

.hybrix-hero__subtitle.corel-hero__title-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
    line-height: 0.6;
    margin-top: 36px;
}

.hybrix-hero__subtitle.corel-hero__title-secondary {
    color: #FFFFFF;
    font-weight: 700;
}

.hybrix-car-section {
    background: url('../assets/images/orange-super-sport-car.avif') bottom center / cover no-repeat;
    padding: 120px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}

.hybrix-car-section__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hybrix-car-section__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.hybrix-car-section__text strong {
    font-family: 'Poppins ExtraBold', 'Arial', sans-serif;
}

.hybrix-specs {
    background-color: #000000;
}

.hybrix-features {
    background-color: #000000;
}

.hybrix-footer {
    background: url('../assets/images/footer-bg.avif') center bottom / cover no-repeat;
}

@media (max-width: 768px) {
    .hybrix-hero__title-image {
        width: 100%;
        max-width: 400px;
    }

    .hybrix-hero__subtitle {
        font-size: 72px;
    }

    .hybrix-car-section__text {
        max-width: 100%;
    }
}

/* ================================
   Contact Page Styles
   ================================ */
.contact-body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
}

.contact-body .background-image {
    display: none;
}

.contact-circle-decoration {
    position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  pointer-events: none;
  overflow: visible;
  width: 27%;
}

.contact-circle-decoration img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    opacity: 0.3;
}

.join-us-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px 12px 24px;
    background: url('../assets/images/section-3-curve-normal.avif') center center / contain no-repeat;
    color: #0E0E0E;
    text-decoration: none;
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    align-self: flex-end;
}

.join-us-button:hover {
    transform: translateY(-2px);
}

.join-us-icon {
    width: 18px;
    height: 18px;
}

.join-us-text {
    text-transform: uppercase;
}

.contact-main {
    background-color: #000000;
    position: relative;
}

.contact-section {
    position: relative;
    padding: 120px 0 100px;
    background-color: #000000;
    min-height: 80vh;
}

.shapes-decoration {
    position: absolute;
    top: 43%;
    left: 20%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.shapes-decoration img {
    width: 570px;
    height: auto;
    opacity: 0.6;
}

.contact-section__content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.contact-section__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-title {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.contact-title__outline {
    font-size: 140px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    line-height: 1;
}

.contact-title__solid {
    font-size: 140px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    line-height: 1;
}

.contact-subtitle {
    font-size: 120px;
    font-family: 'Bebas Neue', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 6px;
    margin-top: 10px;
}

.contact-section__right {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row--half {
    gap: 15px;
}

.form-row--half .form-input {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #000000;
    font-family: 'Poppins SemiBold', 'Arial', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #666666;
}

.form-input:focus {
    border-color: #FF8C00;
}

.contact-submit-button {
    align-self: flex-start;
    padding: 14px 48px 14px 36px;
    background: url('../assets/images/section-3-curve-normal.avif') center center / contain no-repeat;
    border: none;
    color: #0E0E0E;
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 10px;
}

.contact-submit-button:hover {
    transform: translateY(-2px);
}

.contact-footer {
    background: url('../assets/images/footer-bg.avif') center bottom / cover no-repeat;
}

@media (max-width: 1200px) {
    .contact-section__content {
        flex-direction: column;
        gap: 60px;
    }

    .contact-section__right {
        max-width: 100%;
    }

    .shapes-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-title__outline,
    .contact-title__solid {
        font-size: 80px;
    }

    .contact-subtitle {
        font-size: 70px;
    }

    .contact-circle-decoration {
        display: none;
    }

}

/* Contact Us Section */
.contact-us-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #303133;
}

.contact-us-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-us-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.contact-us-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 40px;
    text-align: center;
}

.contact-us-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 121px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 4px;
    margin: 0;
}

.contact-us-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .contact-us-title {
        font-size: 56px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        min-height: 400px;
    }

    .contact-us-content {
        gap: 30px;
        padding: 60px 20px;
    }

    .contact-us-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .contact-us-social {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }
}

/* Homepage Footer */
.homepage-footer {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #222328;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.footer-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 40px;
    padding-bottom: 77px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-column--left {
    max-width: 400px;
}

.footer-column--middle {
    max-width: 200px;
}

.footer-column--right {
    max-width: 400px;
    align-items: flex-end;
}

/* Footer Titles (Orange) */
.footer-title {
    font-family: 'Dubai', 'Arial', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FF8D00;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Text (White) */
.footer-text {
    font-family: 'Texta Bold', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.footer-phone {
    font-size: 30px;
}

/* Footer Head Office */
.footer-head-office {
    margin-top: 80px;
    margin-left: 50px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-link {
    font-family: 'Texta Bold', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF8D00;
}

/* Footer Map */
.footer-map {
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px;
}

.footer-map-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Footer Stats */
.footer-stats {
    display: flex;

    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    align-items: flex-end;
    margin-top: 210px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.footer-stat-number {
    font-family: 'Dubai', 'Arial', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FF8D00;
    line-height: 1;
}

.footer-stat-label {
    font-family: 'Texta Bold', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Contact Social */
.footer-contact-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    width: 100%;
}

.footer-contact-label {
    font-family: 'Texta Bold', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: scale(1.1);
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-container {
        gap: 40px;
    }

    .footer-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-column--right {
        align-items: flex-start;
    }

    .footer-stats {
        align-items: flex-start;
    }

    .footer-contact-social {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 60px 20px;
    }

    .footer-container {
        gap: 40px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-stat-number {
        font-size: 28px;
    }

    .footer-stat-label {
        font-size: 12px;
    }
}

/* Marquee Banner */
.marquee-banner {
    position: relative;
    width: 100%;
    background-color: #FF8D00;
    overflow: hidden;
    padding: 20px 0;
    height: auto;
    min-height: auto;
    max-height: none;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 60px;
    display: inline-block;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@media (max-width: 1024px) {
    .marquee-text {
        font-size: 36px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .marquee-banner {
        padding: 15px 0;
    }

    .marquee-text {
        font-size: 28px;
        padding: 0 30px;
        letter-spacing: 2px;
    }

    .marquee-content {
        animation-duration: 25s;
    }
}