/* =========================================
   1. Variables (CSS Custom Properties)
   ========================================= */
:root {
    /* Colors */
    --c-white: #ffffff;
    --c-black: #000000;
    --c-dark: #0E0E0E;
    --c-dark-gray: #1A1A1A;
    --c-text-main: #333333;
    --c-text-muted: #666666;
    --c-text-light: #EDEDED;
    --c-accent: #667eea;
    --c-accent-hover: #C0C0C0;
    --c-bg-light: #f5f5f7;
    --c-bg-gray: #A99E9E;
    --c-bg-offwhite: #FCFCFC;
    --c-bg-cream: #F4EAE7;
    --c-border: #e1e5e9;
    --c-border-light: rgba(255, 255, 255, 0.4);

    /* Fonts */
    --font-main: 'Montserrat arm', sans-serif; /* Added fallback */

    /* Layout */
    --container-width: 1300px;
    --container-padding: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-btn: 0 10px 25px rgba(102, 126, 234, 0.3);
    --text-shadow-light: 0 1px 2px rgba(255, 255, 255, 0.8);
    --text-shadow-dark: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =========================================
   2. Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-white);
    color: var(--c-black);
    font-family: var(--font-main);
    line-height: 1.6;
    letter-spacing: 1px;
    overflow-x: hidden;
}

img {
    display: block;
}

ul {
    list-style: none;
}
.nav-menu li{
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}


/* Common Container */
[class*="-container"] {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* =========================================
   3. Buttons
   ========================================= */
/* Base Button Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background: var(--c-white);
    color: var(--c-black);
    border: none;
    border-radius: 0px !important;
    width: 323px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
}

.btn-secondary {
    background: transparent;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border);
    border-radius: 8px;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.btn-outline {
    background: transparent;
    color: var(--c-accent);
    border: 2px solid var(--c-accent);
    border-radius: 8px;
}

.btn-outline:hover {
    background: var(--c-accent);
    color: var(--c-white);
    transform: translateY(-2px);
}

.btn-large {
    margin-top: 25px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 12px;
}

/* Store Buttons (App Store/Google Play) */
.store-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
}

.button-image {
    width: auto;
    height: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

/* =========================================
   4. Navigation
   ========================================= */
.banner-nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 24px 0;
    background: transparent;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 194px;
    /* height: 26px; */
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
    transition: transform 0.3s ease;
}

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

/* Menu */
.nav-menu {
    display: flex;
    margin: 0;
    gap: 110px;
}

.nav-item {
    text-align: center;
}

.nav-link {
    font-family: 'Montserrat arm';
    position: relative;
    color: var(--c-text-main);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: var(--text-shadow-light);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--c-accent-hover);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--c-text-main);
    border-radius: 2px;
    transition: 0.3s;
}

/* Navigation Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 60px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: calc(100vh - 70px);
        padding-top: 50px;
        gap: 30px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 20px 0;
    }
}

/* =========================================
   5. Hero Banner Section
   ========================================= */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 2000px;
    min-height: 1000px;
    margin: 0 auto;
    background-image: url('./images/banner-image.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Animation */
@media (prefers-reduced-motion: no-preference) {
    .hero {
        animation: fadeIn 1s ease-out;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-container {
    padding: 0 40px;
}

.banner-text {
    max-width: 40%;
    color: var(--c-text-main);
}

.banner-title {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1.42px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.banner-subtitle {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-shadow: var(--text-shadow-light);
}

.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero {
        background-position: left;
    }
    .banner-text {
        max-width: 70%;
    }
    .banner-title {
        font-size: clamp(28px, 4vw, 48px);
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding-top: 100px;
    }
    .banner-container {
        padding: 0 16px;
    }
    .banner-text {
        max-width: 100%;
        text-align: center;
    }
    .banner-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    .banner-buttons {
        justify-content: center;
    }
    .button-image {
        height: 50px;
    }
}

/* =========================================
   6. About Section
   ========================================= */
.about-section {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    /* height: 1115px; */
    min-height: 600px;
    margin-top: -125px;
    background-color: var(--c-bg-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-inner {
    width: 100%;
    height: 665px;
    margin: 0 24px;
    padding: 60px 100px 0px;
    background-color: var(--c-bg-gray);
    background-image: url('./images/123456.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    justify-items: center;
}

.about-content {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.about-column-left {
    justify-items: center;
}

.about-column-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
}

/* Typography */
.about-title {
    margin-bottom: 30px;
    color: var(--c-white);
    font-size: 34px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1.42px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: var(--text-shadow-dark);
}

.about-subtitle {
    color: var(--c-white);
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-shadow: var(--text-shadow-dark);
}

.about-description {
    color: var(--c-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-shadow: var(--text-shadow-dark);
}

/* Images */
.about-image {
    position: relative;
    bottom: 20px;
    width: 470px;
    height: 567px;
}

.about-image-left {
    position: relative;
    bottom: -23px;
}

/* About Responsive */
@media (max-width: 1300px) {
    .about-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        gap: 90px;
    }
    .about-inner {
        height: 1530px;
    }

}

@media (max-width: 1024px) {
    .about-inner {
        /* height: 1360px; */
    }
    /* .about-title {
        font-size: clamp(28px, 4vw, 48px);
    } */
}

@media (max-width: 768px) {
    .about-title {
        margin-bottom: 40px;
        font-size: clamp(20px, 6vw, 32px);
    }
    .about-subtitle {
        font-size: clamp(18px, 4vw, 24px);
    }
    .about-description {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 680px) {
    .about-inner {
        /* height: 1334px; */
    }
    .about-image-left {
        width: 503px;
    }
    .about-column-right{
        width: 100%;
    }
}

@media (max-width: 520px) {
    .about-image-left {
        width: 427px;    
    }
    img {
        max-width: 100% !important; 
    }
    .hero{
        min-height: 690px;
    }
 
}

/* =========================================
   7. Why Choose Us Section
   ========================================= */
.why-section {
    padding: 40px 0 60px;
    background: var(--c-bg-gray);
}

.why-card {
    position: relative;
    margin-top: -160px;
    padding: 60px 89px;
    background: var(--c-dark);
    color: var(--c-white);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.why-header {
    margin-bottom: 40px;
}

.why-title {
    margin-bottom: 14px;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-subtitle {
    max-width: 700px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3; /* FIXED: Was 230x */
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 27px 0;
    border-top: 1px solid var(--c-border-light);
    border-bottom: 1px solid var(--c-border-light);
}

.why-item {
    position: relative;
}

.why-item:not(:last-child) {
    border-right: 1px solid var(--c-border-light);
}

.why-item-head {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.why-item-desc {
    color: var(--c-text-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

/* Icons */
.why-icon,
.why-icon-1 {
    display: flex;
    width: 68px;
    height: 68px;
    padding: 15px;
    background: var(--c-white);
    border-radius: 34px;
    object-fit: cover;
}

.why-icon-1 {
    justify-self: end;
    margin: 24px 24px 0 0;
}

/* Why Section Responsive */
@media (max-width: 1024px) {
    .why-container { padding: 0 16px; }
    .why-features { grid-template-columns: repeat(2, 1fr); }
    .why-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
    .why-features { grid-template-columns: 1fr; }
    .why-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .why-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* =========================================
   8. Key Features Section
   ========================================= */
.features-section {
    padding: 62px 0 195px;
    background: var(--c-bg-offwhite);
}

.features-header {
    margin-bottom: 20px;
}

.features-title {
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: 600;
    line-height: 28px;
}

.features-subtitle {
    max-width: 415px;
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 31px;
    width: 100%;
}

.feature-item.reverse {
    justify-content: flex-end;
}

.feature-item.reverse .feature-media { order: 2; }
.feature-item.reverse .feature-copy { order: 1; text-align: end; }

.feature-media {
    display: flex;
    justify-content: center;
}

.feature-image-card {
    width: 327px;
    height: 327px;
    max-width: 327px; /* FIXED: Was 327% */
    max-height: 327px; /* FIXED: Was 327% */
    border-radius: 20px;
}

.feature-copy {
    align-content: flex-end;
    max-width: 320px;
}

.feature-heading {
    margin-bottom: 15px;
    color: var(--c-black);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.feature-desc {
    max-width: 380px;
    margin: 0 auto;
    color: var(--c-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.feature-underline {
    display: block;
    width: 100%;
    height: 2px;
    margin: 30px auto 0;
    background: #E5E5E5;
}

/* Features Responsive */
@media (max-width: 1300px) {
    .features-section {
        /* margin-top: 490px; */
    }
}

@media (max-width: 1024px) {
    .features-container { padding: 0 16px; }
    .feature-item { flex-direction: column; gap: 24px; }
    .feature-item.reverse .feature-media { order: 1; }
    .feature-item.reverse .feature-copy { order: 2; text-align: left; }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column !important;
        align-items: center;
    }
    .feature-copy {
        text-align: center !important;
    }
}

/* =========================================
   9. Partners Section (Infinite Scroll)
   ========================================= */
.partners-section {
    height: 155px;
    margin: 30px 0;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
    align-content: center;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    /* Vendor prefixes retained for compatibility */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: partners-scroll 30s linear infinite;
    width: max-content; /* Ensures track fits content */
}

.partner-logo {
    transition: transform 0.3s ease;
}

@keyframes partners-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .partners-section{
        margin: 80px 0;
    }
    .partners-container {
        padding: 0 16px;
    }
    .partners-track {
        gap: 40px;
        animation-duration: 24s;
    }
}

/* =========================================
   10. How It Works Section
   ========================================= */
.howitworks-section {
    padding: 30px 0;
    background: var(--c-bg-cream);
}

.how-container {
    height: 955px;
    padding: 30px;
}

.how-header {
    margin-bottom: 25px;
}

/* Note: Specific font styles for titles inside this section based on original CSS */
.how-title-main {
    margin-bottom: 12px;
    color: var(--c-dark);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.how-subtitle {
    color: var(--c-dark);
    font-size: 30px;
    font-weight: 600;
}

.how-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.2fr;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    height: 600px;
    background-image: url('./images/hiw.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Grid Areas */
.how-left {
    align-self: end;
}

.how-middle {
    align-self: start;
    /* justify-self: anchor-center; REMOVED experimental property */
    justify-self: center; /* Replaced with standard */
}

.how-right {
    place-self: self-end;
}

/* Decorative Frames */
.diamond-frame {
    position: relative;
    display: grid;
    place-items: center;
    width: 520px;
    height: 520px;
    margin: 0 auto 24px auto;
    border: 2px dashed rgba(0,0,0,0.35);
    border-radius: 24px;
    transform: rotate(45deg);
    overflow: visible;
}

.diamond-image {
    width: 480px;
    height: 480px;
    border-radius: 28px;
    object-fit: cover;
    transform: rotate(-45deg);
}

.circle-frame {
    position: relative;
    display: grid;
    place-items: center;
    width: 600px;
    height: 600px;
    margin: 0 auto 16px auto;
    border: 2px dashed rgba(0,0,0,0.35);
    border-radius: 50%;
}

.circle-image {
    width: 540px;
    height: 540px;
    border-radius: 50%;
    object-fit: cover;
}

/* Text content inside grid */
.how-left-caption,
.how-right-list,
.how-list {
    padding-left: 22px;
}

/* Overriding h3/h4 styles locally as per original CSS structure */
.how-grid h3,
.how-left-title,
.how-right-title {
    margin-bottom: 6px;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
}

.how-middle-title {
    align-self: start;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.how-right-title {
    margin-bottom: 10px;
    font-size: 22px;
}

/* Small titles inside the steps */
.step-title {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.76px;
}

.how-list li,
.how-right-list li {
    margin-bottom: 10px;
}

.free-space {
    position: relative;
    height: 200px;
}

/* How It Works Responsive */
@media (max-width: 1300px) {
    .how-container {
        padding: 30px 60px !important;
        height: auto;
    }
    .how-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        height: auto;
        max-height: none;
        padding: 40px 0;
    }
    .how-grid > * {
        justify-self: center !important;
        align-self: center !important;
        text-align: center;
    }
    .how-left-caption, .how-list, .how-right-list {
        padding-left: 0;
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 1200px) {
    .diamond-frame { width: 420px; height: 420px; }
    .diamond-image { width: 380px; height: 380px; }
    .circle-frame { width: 460px; height: 460px; }
    .circle-image { width: 420px; height: 420px; }
    .how-header { text-align: center; }
}

@media (max-width: 520px) {
    .diamond-frame { width: 320px; height: 320px; }
    .diamond-image { width: 290px; height: 290px; }
    .circle-frame { width: 340px; height: 340px; }
    .circle-image { width: 310px; height: 310px; }
    .how-container { padding: 30px 20px !important; }
}

/* =========================================
   11. Community Section
   ========================================= */
.community-section {
    position: relative;
    padding: 0 0 80px 0;
    background: var(--c-bg-gray);
}

.community-header {
    margin-bottom: 40px;
}

.community-title {
    margin-bottom: 20px;
    color: var(--c-white);
    font-size: 34px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
}

.community-content {
    margin-bottom: 60px;
}

.community-description {
    color: var(--c-white);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.community-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.community-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.community-item-image {
    position: relative;
    margin-bottom: 20px;
}

.community-item-image img {
    width: 280px;
    height: 280px;
    border: 2px solid #B8B8B8;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.community-item-title {
    margin-bottom: 15px;
}

.community-item-title-text {
    margin: 0;
    color: var(--c-white);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.community-item-description {
    max-width: 220px;
}

.community-item-description-text {
    margin: 0;
    color: var(--c-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

/* Community Responsive */
@media (max-width: 1024px) {
    .community-container {
        padding: 0 60px !important;
    }
    .community-list {
        place-content: center;
        gap: 30px;
    }
    .community-item {
        min-width: 180px;
        max-width: 200px;
    }
    .community-item-image img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 60px 0;
    }
    .community-title {
        font-size: 28px;
        line-height: 36px;
        text-align: center;
    }
    .community-description {
        font-size: 16px;
        text-align: center;
    }
    .community-list {
        flex-direction: column;
        align-items: center;
    }
    .community-item {
        min-width: 250px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .community-section {
        padding: 40px 0;
    }
    .why-card{
        padding: 60px 14px;
    }
    .community-container {
        padding: 0 24px !important;
    }
    .community-title {
        font-size: 24px;
        line-height: 30px;
    }
    .community-item-image img {
        width: 150px;
        height: 150px;
    }
    .about-inner{
        padding: 60px 0px;
                height: 1342px;

    }
    .about-image {
        height: unset;
    }
}

/* =========================================
   12. CTA Section (Phone Mockups)
   ========================================= */
.cta-section {
    position: relative;
    display: flex;
    min-height: 800px;
    padding: 60px 0;
    background-image: url('./images/back4.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-text {
    z-index: 2;
    flex: 1;
    max-width: 700px;
}

.cta-title,
.cta-subtitle {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 34px;
    line-height: 140%;
    color: var(--c-black);
}

.cta-title {
    margin-bottom: 30px;
    letter-spacing: 1.07px;
    text-transform: uppercase;
}

.cta-subtitle {
    margin-bottom: 20px;
    letter-spacing: 0.83px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Phone Visuals */
.cta-phones {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.phone-left {
    z-index: 2;
    transform: rotate(-15deg);
}

.phone-right {
    z-index: 1;
    transform: rotate(5deg);
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    padding: 8px;
    background: #000000;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Notch indicator */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 10;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
}

/* Internal Phone UI Styles */
.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.phone-time, .app-logo, .profile-info h4, .current-price, .post-header span {
    color: #000;
    font-weight: 600;
}

.phone-time, .profile-info h4 { font-size: 14px; }
.app-logo { font-size: 18px; font-weight: 700; }

.phone-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-img, .item-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.profile-img { border-radius: 50%; }
.item-img { border-radius: 6px; }

.profile-info p, .profile-stats span, .item-info span, .old-price {
    color: #666;
    font-size: 12px;
}

.phone-content {
    height: calc(100% - 80px);
    padding: 16px;
    overflow-y: auto;
}

.wardrobe-section h5, .looks-section h5 {
    margin: 0 0 12px 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.wardrobe-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 8px;
}

.looks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.look-item {
    padding: 8px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    text-align: center;
    border-radius: 6px;
}

.stories-section {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.story-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    color: #666;
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
}

.feed-post {
    padding: 12px;
    background: #f8f8f8;
    border-radius: 8px;
}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.follow-btn {
    padding: 4px 12px;
    background: #007AFF;
    color: white;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
}

/* CTA Responsive */
@media (max-width: 1300px) {
    .cta-section {
        padding: 60px 60px !important;
    }
}

@media (max-width: 1024px) {
    .cta-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .cta-text { max-width: 100%; }
    .cta-buttons { justify-content: center; }
    .cta-phones { gap: 20px; }
    .phone-mockup { width: 240px; height: 480px; }
}

@media (max-width: 768px) {
    .cta-section { min-height: 600px; padding: 60px 0; }
    .cta-container { padding: 0 16px; }
    .cta-title { font-size: 28px; line-height: 36px; }
    .cta-subtitle { font-size: 16px; line-height: 24px; }
    .cta-phones { flex-direction: column; gap: 30px; }
    .phone-left, .phone-right { transform: none; }
    .phone-mockup { width: 200px; height: 400px; }
}

@media (max-width: 480px) {
    .cta-section { min-height: 500px; padding: 40px 0; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .phone-mockup { width: 180px; height: 360px; }
}

/* =========================================
   13. Contact Section
   ========================================= */
.contact-section {
    padding: 80px 0;
    background: var(--c-bg-offwhite);
}

.contact-card {
    margin-top: -285px;
    padding: 48px;
    background: var(--c-dark);
    color: var(--c-white);
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-header {
    margin-bottom: 30px;
}

.contact-title {
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-subtitle {
    color: var(--c-text-light);
    font-size: 26px;
    font-weight: 600;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-success{
    color:rgb(6, 218, 6);
}

.form-label {
    color: var(--c-white);
    font-size: 16px;
    font-weight: 400;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--c-dark-gray);
    color: var(--c-white);
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #CFCFCF;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9A9A9A;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-actions {
    width: 35%;
    min-width: 200px;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.contact-submit {
    border-radius: 12px;
}

.contact-info {
    margin-top: 30px;
    font-size: 16px;
    text-align: center;
}

.form-error{
    color: red;
}

/* Contact Responsive */
@media (max-width: 1300px) {
    .contact-section { padding: 80px 0px !important; }
}

@media (max-width: 1024px) {
    .contact-card { padding: 32px; }
}

@media (max-width: 768px) {
    .contact-container { padding: 0 16px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-title { font-size: 28px; }
    .contact-subtitle { font-size: 16px; }
}

/* =========================================
   14. Footer Section
   ========================================= */
.footer-section {
    padding: 48px 0 32px;
    background: var(--c-black);
    color: var(--c-white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.footer-logo {
    width: 243px;
    height: 32px;
}

.as_link{
    color: #ffffff;
    text-decoration: none;
}

.footer-links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 84px;
    margin: 0 150px;
    text-align: center;
}

.footer-links a {
    color: var(--c-white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--c-accent-hover);
}

.footer-stores {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.footer-store img {
    width: auto;
    height: 42px;
    transition: opacity 0.3s;
}

.footer-store:hover img {
    opacity: 0.8;
}

.footer-divider {
    margin: 28px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--c-white);
    font-size: 14px;
    font-weight: 400;
}

/* Footer Responsive */
@media (max-width: 1300px) {
    .footer-section { padding: 48px 60px 32px !important; }
}

@media (max-width: 1024px) {
    .footer-container { padding: 0 16px; }
    .footer-links { margin: 0 50px; }
}

@media (max-width: 768px) {
    .footer-top {
        gap: 30px;
        text-align: center;
    }
    .footer-logo { margin: 0 auto; }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
    .footer-stores { justify-content: center; }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}