/* BlauerNue Font Family */
@font-face {
    font-family: 'BlauerNue';
    src: url('assets/fonts/BlauerNue-Light.woff2') format('woff2'),
        url('assets/fonts/BlauerNue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BlauerNue';
    src: url('assets/fonts/BlauerNue-Regular.woff2') format('woff2'),
        url('assets/fonts/BlauerNue-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BlauerNue';
    src: url('assets/fonts/BlauerNue-Medium.woff2') format('woff2'),
        url('assets/fonts/BlauerNue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BlauerNue';
    src: url('assets/fonts/BlauerNue-SemiBold.woff2') format('woff2'),
        url('assets/fonts/BlauerNue-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BlauerNue';
    src: url('assets/fonts/BlauerNue-Bold.woff2') format('woff2'),
        url('assets/fonts/BlauerNue-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BlauerNue';
    src: url('assets/fonts/BlauerNue-ExtraBold.woff2') format('woff2'),
        url('assets/fonts/BlauerNue-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    overflow-x: hidden !important;
    width: 100%;
    background: var(--bg-dark);
}

:root {
    /* Logo Colors */
    --old-brick: #9c1f2d;
    --flamingo: #ef4344;
    --scarlet-gum: #32165f;
    --puce: #c97791;
    --melanzane: #3a051c;
    --sunglo: #e05f6d;
    --violet: #1e0634;
    --crown-of-thorns: #761c2f;
    --grape: #401e4e;

    /* Theme Colors - Harmonized with Logo */
    --primary-gradient-start: #32165f;
    --primary-gradient-mid: #401e4e;
    --primary-gradient-end: #9c1f2d;
    --accent-primary: #ef4344;
    --accent-secondary: #e05f6d;
    --accent-tertiary: #c97791;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-dark: #1e0634;
    --bg-light: #ffffff;
}

body {
    font-family: 'BlauerNue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden !important;
    position: relative;
    background: var(--bg-dark);
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    backdrop-filter: blur(0px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 105px;
    margin-left: -2rem;
    z-index: 1002;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Default Nav Styles */
.mobile-logo-item,
.mobile-hallmark-item {
    display: none;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'BlauerNue', sans-serif;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background: rgba(30, 6, 52, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        gap: 1.5rem;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), visibility 0s 0.4s;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), visibility 0s 0s;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .mobile-logo-item {
        display: block;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }

    .mobile-logo-item img {
        height: 80px;
        /* Adjust size as needed */
        width: auto;
        object-fit: contain;
    }

    .mobile-hallmark-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        /* Push to bottom */
        margin-bottom: 9rem;
        /* Increased further to move it up */
        width: 100%;
        color: #ffffff;
    }

    .mobile-hallmark-item img {
        width: 50px;
        height: auto;
        margin-bottom: 0.5rem;
        opacity: 1;
        /* removed opacity to keep it crisp white */
        filter: brightness(0) invert(1);
        /* Make icon white */
    }

    .mobile-nav-tagline {
        text-align: center;
        font-family: 'BlauerNue', sans-serif;
        font-size: 0.9rem;
        line-height: 1.2;
        opacity: 0.9;
    }

    .mobile-nav-tagline span {
        display: block;
    }

    .logo {
        height: 50px;
        margin-left: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 110vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image img,
.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 15s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translate(20px, 30px) rotate(270deg);
        opacity: 0.5;
    }
}

.scientific-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 2;
}

.molecule-svg {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 3rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-line-1,
.title-line-2 {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line-2 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
    color: #ef4344;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-family: 'BlauerNue', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
    animation: fadeIn 1.2s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.4s ease-out 0.6s both;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BlauerNue', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(239, 67, 68, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(239, 67, 68, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: #000;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    transform: rotate(45deg);
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Platform Section */
.platform-section {
    position: relative;
    min-height: 100vh;
    height: auto;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10rem 0;
}

.platform-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem 0 6rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    min-height: 0;
}

.platform-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    order: 1;
}

.platform-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.platform-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
}

.platform-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pipeline-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: left;
    max-width: 100%;
}

.platform-text {
    margin-bottom: 2.5rem;
}

.platform-paragraph {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.26rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.platform-paragraph:last-of-type {
    margin-bottom: 0;
}

.platform-paragraph strong {
    color: #000;
    font-weight: 700;
}

.highlight {
    font-weight: 800;
    color: #000;
}

.platform-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BlauerNue', sans-serif;
    position: relative;
    overflow: hidden;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.platform-btn:hover::after {
    left: 100%;
}

/* Platform Visual */
.platform-visual {
    position: relative;
    width: 100%;
    height: 600px;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.platform-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Platform Video Container */
.platform-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.platform-video-container video,
.platform-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .platform-video-container img {
        object-fit: contain;
        object-position: center;
    }
}


/* Responsive Design - Common Resolutions */
/* 2560x1440 (2K/QHD) */
@media (max-width: 2560px) {
    .nav-menu a {
        font-size: 1.15rem;
    }

    .hero-title {
        font-size: clamp(3rem, 8.5vw, 6rem);
    }

    .hero-description {
        font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    }

    .platform-container {
        max-width: 1800px;
        gap: 4.5rem;
        padding: 0 4.5rem 0 7rem;
    }
}

/* 1920x1080 (Full HD) */
@media (max-width: 1920px) {
    .nav-menu a {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5.5rem);
    }

    .hero-description {
        font-size: clamp(1rem, 2vw, 1.3rem);
    }

    .platform-container {
        max-width: 1500px;
        gap: 4rem;
        padding: 0 3.5rem 0 5rem;
    }

    .platform-visual {
        height: 550px;
    }

    .platform-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .platform-paragraph {
        font-size: 1.15rem;
    }
}

/* 1680x1050 (WSXGA+) */
@media (max-width: 1680px) {
    .nav-menu a {
        font-size: 0.98rem;
    }

    .hero-title {
        font-size: clamp(2.3rem, 7.8vw, 5.2rem);
    }

    .platform-container {
        max-width: 1450px;
        gap: 3.5rem;
        padding: 0 3.5rem 0 5rem;
    }

    .platform-visual {
        height: 520px;
    }
}

/* 1600x900 (HD+) */
@media (max-width: 1600px) {
    .nav-menu a {
        font-size: 0.96rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 7.5vw, 5rem);
    }

    .platform-container {
        max-width: 1400px;
        padding: 0 3rem 0 4.5rem;
    }

    .platform-visual {
        height: 500px;
    }
}

/* 1536x864 */
@media (max-width: 1536px) {
    .nav-menu a {
        font-size: 0.94rem;
    }

    .hero-title {
        font-size: clamp(2.1rem, 7.3vw, 4.8rem);
    }

    .platform-container {
        max-width: 1350px;
        padding: 0 2.8rem 0 4.2rem;
    }
}

/* 1440x900 */
@media (max-width: 1440px) {
    .nav-menu a {
        font-size: 0.92rem;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 4.5rem);
    }

    .platform-container {
        max-width: 1300px;
        padding: 0 2.5rem 0 4rem;
    }

    .platform-visual {
        height: 480px;
    }
}

/* 1366x768 (Laptop) */
@media (max-width: 1366px) {
    .logo {
        margin-left: -1rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: clamp(1.9rem, 6.8vw, 4.2rem);
    }

    .hero-description {
        font-size: clamp(0.95rem, 1.9vw, 1.2rem);
    }

    .platform-container {
        max-width: 1250px;
        padding: 0 2.5rem 0 3.5rem;
        gap: 3rem;
    }

    .platform-visual {
        height: 450px;
    }

    .platform-title {
        font-size: clamp(1.6rem, 3.8vw, 2.5rem);
    }

    .platform-paragraph {
        font-size: 1.05rem;
    }
}

/* 1280x1024 (SXGA) */
@media (max-width: 1280px) {
    .nav-menu a {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6.5vw, 4rem);
    }

    .platform-container {
        max-width: 1200px;
        padding: 0 2.2rem 0 3.2rem;
        gap: 2.8rem;
    }

    .platform-visual {
        height: 420px;
    }
}

/* 1280x720 (HD) */
@media (max-width: 1280px) and (max-height: 800px) {
    .nav-menu a {
        font-size: 0.88rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 6.2vw, 3.8rem);
    }

    .platform-container {
        max-width: 1150px;
        padding: 0 2rem 0 3rem;
    }

    .platform-visual {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .platform-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .platform-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
        margin: 0 auto;
    }

    .platform-visual {
        height: 400px;
        order: -1;
        margin-left: 0;
        opacity: 1;
        transform: none;
    }

    .platform-content {
        opacity: 1;
        transform: none;
        text-align: center;
    }

    .platform-title {
        text-align: center;
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .platform-paragraph {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        height: 50px;
        margin-left: 0;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.75rem;
    }

    .hero {
        padding: 120px 0 0;
        height: auto;
        min-height: 80vh;
        /* Increased height for better visibility */
        margin-bottom: 0;
        padding-bottom: 4rem;
        display: flex;
        align-items: center;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-image video {
        object-position: center center;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .title-line-1,
    .title-line-2 {
        display: block;
    }

    .hero-description {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .platform-section,
    .purpose-section,
    .our-purpose-section {
        padding: 1.5rem 0;
    }

    .purpose-hero-content {
        padding-top: 140px;
    }

    .molecule-svg {
        width: 150px;
        height: 150px;
        top: 10%;
        right: 5%;
    }

    .platform-section {
        padding-top: 3rem;
        /* Spacing from hero */
        padding-bottom: 0;
        background-color: #ffffff;
        /* Ensure white background for the gap */
    }

    .platform-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .platform-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 1.5rem;
    }

    .platform-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .platform-visual {
        height: 350px;
        min-height: 350px;
    }

    .platform-video-container {
        height: 100%;
        min-height: 350px;
    }

    .platform-label span {
        font-size: 0.65rem;
    }

    .platform-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Samsung Galaxy S24 FE and real mobile devices */
/* Mobile and small devices */
@media (max-width: 480px) {

    .platform-section {
        padding-top: 6rem;
        padding-bottom: 0;
        background-color: #ffffff;
    }

    .purpose-section,
    .our-purpose-section {
        padding: 0;
    }

    .platform-visual {
        height: 300px;
        min-height: 300px;
    }

    .platform-video-container {
        height: 100%;
        min-height: 300px;
    }

    .platform-video-container img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: auto;
        max-height: 100%;
    }
}

/* Purpose Section */
.purpose-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: #0a0212;
    /* Slightly "lighter" than pure black, dark violet tint */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.purpose-background-video,
.purpose-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.purpose-background-video {
    object-fit: cover;
    opacity: 0.82;
    /* Adjusted to 0.82 as requested */
    filter: grayscale(30%) brightness(0.65) contrast(1.1);
    /* Slightly brighter and less gray */
}

.purpose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(30, 6, 52, 0.3) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Softer radial overlay */
    z-index: 2;
    pointer-events: none;
}

/* Edge blending with multi-stop "gradient easing" for a ultra-smooth, layered transition */
/* Tightened to 22% to maximize center video prominence */
.purpose-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to bottom,
            #ffffff 0%,
            rgba(255, 255, 255, 0.98) 4%,
            rgba(255, 255, 255, 0.85) 8%,
            rgba(255, 255, 255, 0.55) 12%,
            rgba(255, 255, 255, 0.25) 16%,
            rgba(255, 255, 255, 0.05) 19%,
            transparent 22%),
        linear-gradient(to top,
            #ffffff 0%,
            rgba(255, 255, 255, 0.98) 4%,
            rgba(255, 255, 255, 0.85) 8%,
            rgba(255, 255, 255, 0.55) 12%,
            rgba(255, 255, 255, 0.25) 16%,
            rgba(255, 255, 255, 0.05) 19%,
            transparent 22%);
    z-index: 4;
    pointer-events: none;
}

/* Removed .purpose-bar styles */

.purpose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
    min-height: 0;
}

.purpose-text-wrapper {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.purpose-text-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.purpose-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    /* White base color for dark theme */
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: default;
}

/* Sophisticated bloom and zoom ONLY on hover */
.purpose-title:hover {
    transform: scale(1.02);
}

.purpose-line {
    display: block;
    position: relative;
    width: 100%;
    white-space: normal;
    /* Changed from nowrap to normal to prevent overflow */
}

.purpose-line-1 {
    margin-bottom: 0.15em;
}

.purpose-line-2 {
    display: block;
}

.purpose-title .char {
    display: inline-block;
    position: relative;
    color: #fff;
    /* White base color for dark theme */
    transition: color 0.3s ease;
}

/* Scroll-based lighting effect */
.purpose-title {
    position: relative;
}


/* Responsive for Purpose Section */
/* 2560x1440 (2K/QHD) */
@media (max-width: 2560px) {
    .purpose-container {
        max-width: 1800px;
        padding: 0 5rem;
    }

    .purpose-title {
        font-size: clamp(3rem, 6vw, 5.5rem);
    }
}

/* 1920x1080 (Full HD) */
@media (max-width: 1920px) {
    .purpose-container {
        max-width: 1400px;
        padding: 0 3.5rem;
    }

    .purpose-title {
        font-size: clamp(2.8rem, 5.5vw, 5rem);
    }
}

/* 1680x1050 (WSXGA+) */
@media (max-width: 1680px) {
    .purpose-container {
        max-width: 1350px;
        padding: 0 3.2rem;
    }

    .purpose-title {
        font-size: clamp(2.6rem, 5.2vw, 4.5rem);
    }
}

/* 1600x900 (HD+) */
@media (max-width: 1600px) {
    .purpose-container {
        max-width: 1300px;
        padding: 0 3rem;
    }

    .purpose-title {
        font-size: clamp(2.5rem, 5vw, 4.2rem);
    }
}

/* 1536x864 */
@media (max-width: 1536px) {
    .purpose-container {
        max-width: 1250px;
        padding: 0 2.8rem;
    }

    .purpose-title {
        font-size: clamp(2.4rem, 4.8vw, 4rem);
    }
}

/* 1440x900 */
@media (max-width: 1440px) {
    .purpose-container {
        max-width: 1200px;
        padding: 0 2.8rem;
    }

    .purpose-title {
        font-size: clamp(2.3rem, 4.6vw, 3.8rem);
    }
}

/* 1366x768 (Laptop) */
@media (max-width: 1366px) {
    .purpose-container {
        max-width: 1200px;
        padding: 0 3rem;
    }

    .purpose-title {
        font-size: clamp(2.3rem, 4.6vw, 3.8rem);
    }
}

/* 1280x1024 (SXGA) */
@media (max-width: 1280px) {
    .purpose-container {
        max-width: 1150px;
        padding: 0 2.5rem;
    }

    .purpose-title {
        font-size: clamp(2.2rem, 4.4vw, 3.5rem);
    }
}

/* 1280x720 (HD) */
@media (max-width: 1280px) and (max-height: 800px) {
    .purpose-container {
        max-width: 1100px;
        padding: 0 2.2rem;
    }

    .purpose-title {
        font-size: clamp(2rem, 4.2vw, 3.2rem);
    }
}

@media (max-width: 768px) {
    .purpose-section {
        padding: 4rem 0;
        height: auto;
        /* Reduced from 75vh/100vh */
        min-height: 60vh;
    }

    .purpose-container {
        padding: 0 1.5rem;
    }

    .purpose-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.4;
        max-width: 95%;
    }

    .purpose-line {
        white-space: normal;
    }

    .purpose-line .char {
        display: inline !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .purpose-line-2 {
        padding-left: 0;
    }
}

/* Samsung Galaxy S24 FE and similar (390px width) */
/* Mobile and small devices */
@media (max-width: 480px) {
    .purpose-container {
        padding: 0 1.2rem;
    }

    .purpose-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1.5;
    }
}

/* Our Purpose Section */
.our-purpose-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.our-purpose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 0;
}

.our-purpose-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    margin-left: -2rem;
}

.animal-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    justify-content: flex-start;
}

/* Video, GIF veya animasyonlu resim stilleri */
.animal-graphic video,
.animal-graphic img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    border-radius: 12px;
    display: block;
}

/* Overlay to hide watermark texts */
.video-overlay-bottom-left,
.video-overlay-bottom-right {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 60px;
    background: linear-gradient(to top, rgba(245, 245, 245, 0.95) 0%, rgba(245, 245, 245, 0.8) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.video-overlay-bottom-left {
    left: 0;
    border-radius: 0 12px 0 0;
}

.video-overlay-bottom-right {
    right: 0;
    border-radius: 12px 0 0 0;
}



.teal-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-primary);
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 0 15px rgba(239, 67, 68, 0.6);
    pointer-events: none;
}

.our-purpose-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 2rem;
}

.our-purpose-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.purpose-icon {
    width: 48px;
    height: 48px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purpose-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.paw-icon-header {
    width: 100%;
    height: 100%;
}

.purpose-label {
    font-family: 'BlauerNue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
}

.purpose-text {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.65rem;
    line-height: 1.8;
    color: #111;
    font-weight: 400;
    margin-bottom: 1rem;
}

.purpose-learn-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BlauerNue', sans-serif;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.purpose-learn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.value-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* Responsive for Our Purpose Section */
/* 2560x1440 (2K/QHD) */
@media (max-width: 2560px) {
    .our-purpose-container {
        max-width: 1800px;
        gap: 4rem;
    }

    .our-purpose-visual {
        height: 650px;
        margin-left: -3rem;
    }

    .purpose-text {
        font-size: 1.7rem;
    }
}

/* 1920x1080 (Full HD) */
@media (max-width: 1920px) {
    .our-purpose-container {
        max-width: 1400px;
        gap: 3rem;
    }

    .our-purpose-visual {
        height: 550px;
        margin-left: -2rem;
    }

    .purpose-text {
        font-size: 1.5rem;
    }

    .purpose-label {
        font-size: 1rem;
    }
}

/* 1680x1050 (WSXGA+) */
@media (max-width: 1680px) {
    .our-purpose-container {
        max-width: 1350px;
        gap: 2.8rem;
    }

    .our-purpose-visual {
        height: 520px;
        margin-left: -1.8rem;
    }

    .purpose-text {
        font-size: 1.4rem;
    }
}

/* 1600x900 (HD+) */
@media (max-width: 1600px) {
    .our-purpose-container {
        max-width: 1300px;
        gap: 2.7rem;
    }

    .our-purpose-visual {
        height: 500px;
        margin-left: -1.7rem;
    }

    .purpose-text {
        font-size: 1.35rem;
    }
}

/* 1536x864 */
@media (max-width: 1536px) {
    .our-purpose-container {
        max-width: 1250px;
        gap: 2.6rem;
    }

    .our-purpose-visual {
        height: 480px;
        margin-left: -1.6rem;
    }

    .purpose-text {
        font-size: 1.3rem;
    }
}

/* 1440x900 */
@media (max-width: 1440px) {
    .our-purpose-container {
        max-width: 1200px;
        gap: 2.5rem;
    }

    .our-purpose-visual {
        height: 460px;
        margin-left: -1.5rem;
    }

    .purpose-text {
        font-size: 1.25rem;
    }
}

/* 1366x768 (Laptop) */
@media (max-width: 1366px) {
    .our-purpose-container {
        max-width: 1200px;
        gap: 2.5rem;
        padding: 0 2.5rem;
    }

    .our-purpose-visual {
        height: 500px;
        margin-left: -1.5rem;
    }

    .purpose-text {
        font-size: 1.3rem;
    }

    .purpose-label {
        font-size: 0.95rem;
    }
}

/* 1280x1024 (SXGA) */
@media (max-width: 1280px) {
    .our-purpose-container {
        max-width: 1150px;
        gap: 2.3rem;
        padding: 0 2.3rem;
    }

    .our-purpose-visual {
        height: 440px;
        margin-left: -1.3rem;
    }

    .purpose-text {
        font-size: 1.2rem;
    }
}

/* 1280x720 (HD) */
@media (max-width: 1280px) and (max-height: 800px) {
    .our-purpose-container {
        max-width: 1100px;
        gap: 2.2rem;
        padding: 0 2.2rem;
    }

    .our-purpose-visual {
        height: 420px;
        margin-left: -1.2rem;
    }

    .purpose-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 1024px) {
    .our-purpose-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }

    .our-purpose-visual {
        height: 400px;
        order: -1;
        margin-left: 0;
    }

    .purpose-text {
        font-size: 1.1rem;
    }

    .purpose-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .our-purpose-section {
        padding: 0;
    }

    .our-purpose-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .our-purpose-visual {
        height: 280px;
    }

    .purpose-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .purpose-label {
        font-size: 0.75rem;
    }

    .purpose-icon {
        width: 36px;
        height: 36px;
    }

    .purpose-learn-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .values-section {
        justify-content: center;
    }

    .value-text {
        font-size: 0.75rem;
    }
}

/* Samsung Galaxy S24 FE */
/* Mobile and small devices */
@media (max-width: 480px) {
    .our-purpose-container {
        padding: 0 1.2rem;
        gap: 1.5rem;
    }

    .our-purpose-visual {
        height: 240px;
    }

    .animal-graphic img {
        object-fit: contain;
        object-position: left center;
    }

    .purpose-text {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        line-height: 1.7;
    }

    .purpose-label {
        font-size: 0.7rem;
        gap: 0.6rem;
    }

    .purpose-icon {
        width: 28px;
        height: 28px;
    }

    .purpose-learn-btn {
        padding: 0.75rem 1.8rem;
        font-size: 0.85rem;
    }

    .value-text {
        font-size: 0.7rem;
    }
}

/* Our People Section */
.our-people-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.our-people-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-people-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.our-people-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.our-people-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-people-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.our-people-image img,
.our-people-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.our-people-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 3rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.our-people-text-container {
    animation: fadeInUp 1s ease-out;
}

.our-people-label {
    font-family: 'BlauerNue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: -10rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
}

.our-people-icon {
    width: 48px;
    height: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.people-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.paw-icon-people {
    width: 100%;
    height: 100%;
}

.our-people-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.people-title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.our-people-description {
    font-family: 'BlauerNue', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #fff;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    animation: fadeIn 1.2s ease-out 0.4s both;
}

/* Who We Are Icon Styles */
.whoweare-title-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.whoweare-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Responsive for Our People Section */
/* 2560x1440 (2K/QHD) */
@media (max-width: 2560px) {
    .our-people-label {
        margin-top: -10rem;
        font-size: 1.5rem;
    }

    .our-people-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
}

/* 1920x1080 (Full HD) */
@media (max-width: 1920px) {
    .our-people-label {
        margin-top: -8rem;
        font-size: 1.3rem;
    }

    .our-people-title {
        font-size: clamp(2rem, 6vw, 4.2rem);
    }
}

/* 1680x1050 (WSXGA+) */
@media (max-width: 1680px) {
    .our-people-label {
        margin-top: -7.5rem;
        font-size: 1.2rem;
    }

    .our-people-title {
        font-size: clamp(1.9rem, 5.8vw, 4rem);
    }
}

/* 1600x900 (HD+) */
@media (max-width: 1600px) {
    .our-people-label {
        margin-top: -7rem;
        font-size: 1.15rem;
    }

    .our-people-title {
        font-size: clamp(1.85rem, 5.6vw, 3.8rem);
    }
}

/* 1536x864 */
@media (max-width: 1536px) {
    .our-people-label {
        margin-top: -6.8rem;
        font-size: 1.1rem;
    }

    .our-people-title {
        font-size: clamp(1.8rem, 5.5vw, 3.6rem);
    }
}

/* 1440x900 */
@media (max-width: 1440px) {
    .our-people-label {
        margin-top: -6.5rem;
        font-size: 1.1rem;
    }

    .our-people-title {
        font-size: clamp(1.75rem, 5.4vw, 3.5rem);
    }
}

/* 1366x768 (Laptop) */
@media (max-width: 1366px) {
    .our-people-label {
        margin-top: -6rem;
        font-size: 1.1rem;
        gap: 0.8rem;
    }

    .our-people-icon {
        width: 36px;
        height: 36px;
    }

    .our-people-title {
        font-size: clamp(1.8rem, 5.5vw, 3.5rem);
    }

    .our-people-description {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
}

/* 1280x1024 (SXGA) */
@media (max-width: 1280px) {
    .our-people-label {
        margin-top: -5.5rem;
        font-size: 1rem;
    }

    .our-people-title {
        font-size: clamp(1.7rem, 5.2vw, 3.2rem);
    }
}

/* 1280x720 (HD) */
@media (max-width: 1280px) and (max-height: 800px) {
    .our-people-label {
        margin-top: -5rem;
        font-size: 0.95rem;
    }

    .our-people-title {
        font-size: clamp(1.6rem, 5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .our-people-content {
        padding: 0 1.5rem;
    }

    .our-people-section {
        height: auto;
        /* Reduced from 100vh to check if quality improves (less zoom) */
        min-height: 60vh;
        padding: 4rem 0;
    }

    .our-people-image img {
        object-position: 50% 20%;
        /* Same alignment fix as others */
    }

    .our-people-label {
        margin-top: -4rem;
        margin-bottom: 2rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .our-people-icon {
        width: 28px;
        height: 28px;
    }

    .our-people-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 1.5rem;
    }

    .our-people-description {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }

    .whoweare-title-container {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .whoweare-icon {
        height: 40px;
    }
}

/* Samsung Galaxy S24 FE */
/* Mobile and small devices */
@media (max-width: 480px) {
    .our-people-content {
        padding: 0 1.2rem;
    }

    .our-people-label {
        margin-top: -3rem;
        margin-bottom: 1.5rem;
        font-size: 0.75rem;
    }

    .our-people-icon {
        width: 24px;
        height: 24px;
    }

    .our-people-title {
        font-size: clamp(1.3rem, 8vw, 1.9rem);
        margin-bottom: 1.2rem;
    }

    .our-people-description {
        font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    }
}

/* Global Footer Section - Minimalist Light Theme */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #000000;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-top-line {
    max-width: 1400px;
    margin: 0 auto 4rem;
    height: 1px;
    background: #e5e5e5;
}

.footer-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 4rem;
    text-align: left;
}

.footer-main-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.footer-main {
    padding-bottom: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 2fr;
    /* Wider hallmark column */
    gap: 2rem;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    text-transform: none;
    /* Reference shows sentence case or title case */
    letter-spacing: normal;
    margin-bottom: 2rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split navigation into two columns like reference */
    gap: 1.2rem 2rem;
}

.footer-nav-list li a {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
    color: #000000;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: #000000;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.6;
}

.social-link svg {
    width: 28px;
    height: 28px;
}

.address-text {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
}

/* Accessory Hallmark Styling */
.footer-hallmark-column {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
}

.footer-accessory-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-tagline {
    display: flex;
    flex-direction: column;
    font-family: 'BlauerNue', sans-serif;
    font-size: 3.125rem;
    font-weight: 300;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.footer-bottom {
    border-top: 1px solid #000000;
    padding: 2rem 0;
    background: #ffffff;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'BlauerNue', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Footer Responsive Minimal */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }

    .footer-hallmark-column {
        grid-column: span 2;
        justify-content: center;
        margin-top: 2rem;
    }

    .footer-main-logo {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 3rem;
    }

    .footer-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-main-logo {
        height: 80px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .footer-hallmark-column {
        grid-column: span 1;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-accessory-img {
        height: 100px;
    }

    .footer-tagline {
        font-size: 2rem;
        text-align: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1.5rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Single Page Layout */
.contact-single-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 4rem 4rem;
}

.contact-single-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-single-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 6, 52, 0.92) 0%, rgba(50, 22, 95, 0.88) 50%, rgba(156, 31, 45, 0.85) 100%);
    z-index: 1;
}

.contact-single-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side - Info */
.contact-left {
    color: #ffffff;
}

.contact-main-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.contact-main-subtitle {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-item svg {
    width: 22px;
    height: 22px;
    color: #ef4344;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-item>div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.detail-value {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value:hover {
    color: #ef4344;
}

.contact-social-single {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #ef4344;
    border-color: #ef4344;
    transform: translateY(-2px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Right Side - Form Card */
.contact-right {
    display: flex;
    justify-content: flex-end;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
}

.form-card-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.75rem;
}

.contact-compact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.compact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-compact-form input,
.contact-compact-form select,
.contact-compact-form textarea {
    font-family: 'BlauerNue', sans-serif;
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333333;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-compact-form input::placeholder,
.contact-compact-form textarea::placeholder {
    color: #999999;
}

.contact-compact-form input:focus,
.contact-compact-form select:focus,
.contact-compact-form textarea:focus {
    outline: none;
    border-color: #9c1f2d;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(156, 31, 45, 0.1);
}

.contact-compact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.contact-compact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.compact-submit-btn {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #9c1f2d 0%, #761c2f 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.compact-submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.compact-submit-btn:hover {
    background: linear-gradient(135deg, #761c2f 0%, #32165f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 31, 45, 0.4);
}

.compact-submit-btn:hover svg {
    transform: translateX(3px) translateY(-3px);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-single-page {
        padding: 140px 2rem 3rem;
        height: auto;
        min-height: 100vh;
    }

    .contact-single-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-left {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-social-single {
        justify-content: center;
    }

    .contact-right {
        justify-content: center;
    }

    .contact-form-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-single-page {
        padding: 120px 1.5rem 2rem;
    }

    .contact-main-title {
        font-size: 2.8rem;
    }

    .compact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 6rem 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

/* Contact Info Panel */
.contact-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.contact-info-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #9c1f2d;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-info-item h3 {
    font-family: 'BlauerNue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9c1f2d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-item p {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
}

.contact-info-item a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #9c1f2d;
}

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.contact-social h3 {
    font-family: 'BlauerNue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9c1f2d;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color: #333333;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: #9c1f2d;
    border-color: #9c1f2d;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
}

.contact-form-title {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
}

.contact-form-description {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'BlauerNue', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #f8f9fa;
    color: #333333;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9c1f2d;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(156, 31, 45, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-btn {
    font-family: 'BlauerNue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #9c1f2d 0%, #761c2f 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #761c2f 0%, #32165f 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(156, 31, 45, 0.4);
}

.contact-submit-btn:hover svg {
    transform: translateX(3px) translateY(-3px);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-hero {
        padding: 160px 2rem 60px;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-form-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 1.5rem 50px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 3rem 1.5rem;
    }

    .contact-info {
        padding: 2rem;
    }
}