/* ==== Warrantedmarket Aqua Fitness - Core Styles ==== */

/* === CSS Variables === */
:root {
    /* Brand Colors */
    --warrantedmarket-primary: #438A70;
    --warrantedmarket-secondary: #52CEBA;
    --warrantedmarket-accent: #8AFFB4;
    --warrantedmarket-bright: #EAFF81;

    /* Complementary Colors */
    --warrantedmarket-dark: #1a3a30;
    --warrantedmarket-light: #e0faf5;
    --warrantedmarket-white: #f9fffe;
    --warrantedmarket-black: #132921;

    /* Gradient Mappings */
    --warrantedmarket-gradient-primary: linear-gradient(135deg, var(--warrantedmarket-primary), var(--warrantedmarket-secondary));
    --warrantedmarket-gradient-accent: linear-gradient(135deg, var(--warrantedmarket-secondary), var(--warrantedmarket-accent));
    --warrantedmarket-gradient-bright: linear-gradient(135deg, var(--warrantedmarket-accent), var(--warrantedmarket-bright));

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Calistoga', cursive;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(19, 41, 33, 0.1);
    --shadow-md: 0 4px 8px rgba(19, 41, 33, 0.12);
    --shadow-lg: 0 8px 16px rgba(19, 41, 33, 0.14);
    --shadow-xl: 0 12px 24px rgba(19, 41, 33, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-indices */
    --z-base: 1;
    --z-above: 10;
    --z-modal: 100;
    --z-overlay: 1000;
    --z-max: 10000;
}

/* === Base Styles === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--warrantedmarket-dark);
    background: #e7f9f6; /* Subtle non-white background */
    background-image:
            radial-gradient(circle at 20% 30%, rgba(82, 206, 186, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 80% 70%, rgba(138, 255, 180, 0.07) 0%, transparent 70%);
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M10,10 Q30,5 50,10 T90,10 Q95,30 90,50 T90,90 Q70,95 50,90 T10,90 Q5,70 10,50 T10,10" fill="none" stroke="%2352CEBA" stroke-width="0.3" opacity="0.4"/></svg>');
    background-size: 400px 400px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--warrantedmarket-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--warrantedmarket-secondary);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--warrantedmarket-primary);
    hyphens: auto;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
}

/* === Layout === */
.warrantedmarket-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.warrantedmarket-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

/* === Animations === */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 0.8; }
}

@keyframes wave {
    0% { transform: translateX(0) translateZ(0) scaleY(1); }
    50% { transform: translateX(-25%) translateZ(0) scaleY(0.8); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

@keyframes bubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-80px) scale(0.8);
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* === Components === */

/* Cookie Consent */
.warrantedmarket-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--warrantedmarket-white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    z-index: var(--z-overlay);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.warrantedmarket-cookie-consent.active {
    transform: translateY(0);
}

.warrantedmarket-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.warrantedmarket-cookie-content p {
    margin: 0;
    flex: 1;
}

/* Header */
.warrantedmarket-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    z-index: var(--z-above);
    transition: background-color var(--transition-normal),
    padding var(--transition-normal),
    transform var(--transition-normal);
}

.warrantedmarket-header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-sm);
}

.warrantedmarket-header.hidden {
    transform: translateY(-100%);
}

.warrantedmarket-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.warrantedmarket-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    z-index: var(--z-modal);
}

.warrantedmarket-logo a {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.warrantedmarket-logo-text {
    color: var(--warrantedmarket-primary);
    font-weight: 700;
}

.warrantedmarket-logo-accent {
    color: var(--warrantedmarket-secondary);
    font-size: 0.7em;
}

.warrantedmarket-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.warrantedmarket-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--warrantedmarket-primary);
    border-radius: 3px;
    position: absolute;
    transition: all var(--transition-normal);
}

.warrantedmarket-menu-toggle span:nth-child(1) {
    top: 0;
}

.warrantedmarket-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.warrantedmarket-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.warrantedmarket-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.warrantedmarket-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.warrantedmarket-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.warrantedmarket-nav {
    display: flex;
    align-items: center;
}

.warrantedmarket-menu {
    display: flex;
    gap: var(--space-md);
}

.warrantedmarket-menu a {
    color: var(--warrantedmarket-dark);
    position: relative;
    padding: var(--space-xs) 0;
    font-weight: 500;
}

.warrantedmarket-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warrantedmarket-gradient-accent);
    transition: width var(--transition-normal);
}

.warrantedmarket-menu a:hover::after,
.warrantedmarket-menu a.warrantedmarket-active::after {
    width: 100%;
}

/* Buttons */
.warrantedmarket-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.warrantedmarket-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skew(-15deg);
    transition: transform 0.5s ease;
}

.warrantedmarket-btn:hover::before {
    transform: translateX(100%) skew(-15deg);
}

.warrantedmarket-btn-primary {
    background: var(--warrantedmarket-gradient-primary);
    color: var(--warrantedmarket-white);
    box-shadow: 0 4px 12px rgba(67, 138, 112, 0.3);
}

.warrantedmarket-btn-primary:hover {
    box-shadow: 0 6px 15px rgba(67, 138, 112, 0.4);
    transform: translateY(-2px);
    color: var(--warrantedmarket-white);
}

.warrantedmarket-btn-secondary {
    background: var(--warrantedmarket-gradient-accent);
    color: var(--warrantedmarket-dark);
    box-shadow: 0 4px 12px rgba(82, 206, 186, 0.3);
}

.warrantedmarket-btn-secondary:hover {
    box-shadow: 0 6px 15px rgba(82, 206, 186, 0.4);
    transform: translateY(-2px);
    color: var(--warrantedmarket-dark);
}

.warrantedmarket-btn-outline {
    background: transparent;
    border: 2px solid var(--warrantedmarket-primary);
    color: var(--warrantedmarket-primary);
}

.warrantedmarket-btn-outline:hover {
    background: var(--warrantedmarket-primary);
    color: var(--warrantedmarket-white);
}

.warrantedmarket-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.warrantedmarket-cta-center {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Hero Section */

.warrantedmarket-hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: url('../img/hero.jpg');
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.warrantedmarket-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Blur ֆիլտրը կիրառվում է ֆոնի վրա */
    backdrop-filter: blur(5px);
    z-index: 1;
}

.warrantedmarket-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18.48 138.3 24.03 209.4 13.08 36.15-5.6 72.02-17.3 102.6-33.13V0z" opacity="0.5" fill="%2352CEBA"/></svg>');
    background-repeat: repeat-x;
    animation: wave 20s linear infinite;
}

.warrantedmarket-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
    background: rgb(67, 138, 112, 0.5);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.warrantedmarket-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    background: linear-gradient(90deg, var(--warrantedmarket-dark), var(--warrantedmarket-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.warrantedmarket-hero p {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: var(--space-lg);
    color: var(--warrantedmarket-light);
}

.warrantedmarket-hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.warrantedmarket-hero-bubbles {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.warrantedmarket-bubble {
    position: absolute;
    background: radial-gradient(circle at center, rgba(138, 255, 180, 0.6) 0%, rgba(138, 255, 180, 0) 70%);
    border-radius: 50%;
    animation: bubble 8s infinite;
}

.warrantedmarket-bubble:nth-child(1) {
    width: 50px;
    height: 50px;
    left: 10%;
    top: 40%;
    animation-delay: 0s;
}

.warrantedmarket-bubble:nth-child(2) {
    width: 70px;
    height: 70px;
    left: 20%;
    top: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.warrantedmarket-bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    right: 30%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.warrantedmarket-bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    right: 10%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 10s;
}

.warrantedmarket-bubble:nth-child(5) {
    width: 40px;
    height: 40px;
    left: 30%;
    top: 70%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.warrantedmarket-bubble:nth-child(6) {
    width: 60px;
    height: 60px;
    right: 40%;
    top: 50%;
    animation-delay: 5s;
    animation-duration: 8s;
}

/* About Preview Section */
.warrantedmarket-about-preview {
    padding: var(--space-xl) 0;
    position: relative;
}

.warrantedmarket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.warrantedmarket-feature {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.warrantedmarket-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--warrantedmarket-gradient-primary);
}

.warrantedmarket-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--warrantedmarket-primary);
    background: linear-gradient(135deg, rgba(82, 206, 186, 0.1), rgba(138, 255, 180, 0.1));
    border-radius: 50%;
    position: relative;
}

.warrantedmarket-feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--warrantedmarket-secondary);
    animation: ripple 3s infinite;
}

.warrantedmarket-feature h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

/* Products & Services */
.warrantedmarket-services {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(82, 206, 186, 0.1) 100%);
    position: relative;
}

.warrantedmarket-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.warrantedmarket-product {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.warrantedmarket-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.warrantedmarket-liquid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: bottom;
    animation: wave 10s infinite linear;
}

.warrantedmarket-liquid-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path d="M0,100 C40,130 60,70 100,100 C140,130 160,70 200,100 L200,200 L0,200 Z" fill="white" opacity="0.2"/></svg>');
    background-size: 200px 100px;
    animation: wave 8s infinite linear;
}

.warrantedmarket-product-content {
    padding: var(--space-lg);
}

.warrantedmarket-product h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.warrantedmarket-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warrantedmarket-primary);
    margin: var(--space-md) 0;
}

.warrantedmarket-product-price span {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Gift Cards */
.warrantedmarket-gift-cards {
    padding: var(--space-xl) 0;
    position: relative;
}

.warrantedmarket-gift-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.warrantedmarket-gift-card {
    width: 300px;
    height: 180px;
    perspective: 1000px;
}

.warrantedmarket-gift-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
    cursor: pointer;
}

.warrantedmarket-gift-card:hover .warrantedmarket-gift-card-inner {
    transform: rotateY(180deg);
}

.warrantedmarket-gift-card-front, .warrantedmarket-gift-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.warrantedmarket-gift-card-front {
    background: var(--warrantedmarket-gradient-primary);
    color: var(--warrantedmarket-white);
    overflow: hidden;
}

.warrantedmarket-gift-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="20" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="30" fill="white" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.warrantedmarket-gift-card-back {
    background: var(--warrantedmarket-white);
    transform: rotateY(180deg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.warrantedmarket-gift-card-label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.warrantedmarket-gift-card-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.warrantedmarket-gift-card-logo {
    font-family: var(--font-display);
    font-size: 1rem;
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    opacity: 0.8;
}

/* Studio Rules */
.warrantedmarket-studio-rules {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(138, 255, 180, 0.1) 100%);
}

.warrantedmarket-rules-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.warrantedmarket-rule {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.warrantedmarket-rule:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-rule-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warrantedmarket-gradient-accent);
    color: var(--warrantedmarket-dark);
    border-radius: 50%;
    font-size: 1.5rem;
}

.warrantedmarket-rule-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.warrantedmarket-rule-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Trial Class */
.warrantedmarket-trial-class {
    padding: var(--space-xl) 0;
    position: relative;
}

.warrantedmarket-trial-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.warrantedmarket-trial-info {
    padding: var(--space-lg);
}

.warrantedmarket-trial-features {
    margin: var(--space-lg) 0;
}

.warrantedmarket-trial-features li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.warrantedmarket-trial-features i {
    color: var(--warrantedmarket-secondary);
}

.warrantedmarket-trial-image {
    height: 400px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: url("../img/about.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.warrantedmarket-liquid-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="%2352CEBA" stop-opacity="0.2"/><stop offset="100%" stop-color="%238AFFB4" stop-opacity="0.7"/></linearGradient></defs><rect width="100" height="100" fill="url(%23grad)"/></svg>');
    background-size: cover;
}

.warrantedmarket-liquid-fill::before,
.warrantedmarket-liquid-fill::after {
    content: '';
    position: absolute;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18.48 138.3 24.03 209.4 13.08 36.15-5.6 72.02-17.3 102.6-33.13V0z" fill="white" opacity="0.3"/></svg>');
    background-repeat: repeat-x;
}

.warrantedmarket-liquid-fill::before {
    top: 0;
    animation: wave 20s linear infinite;
}

.warrantedmarket-liquid-fill::after {
    bottom: 0;
    transform: rotate(180deg);
    animation: wave 15s linear infinite reverse;
}

/* Pricing Section */
.warrantedmarket-pricing {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(234, 255, 129, 0.1) 100%);
}

.warrantedmarket-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    justify-content: center;
}

.warrantedmarket-pricing-card {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.warrantedmarket-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-pricing-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--warrantedmarket-accent);
    color: var(--warrantedmarket-dark);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}

.warrantedmarket-pricing-header {
    padding: var(--space-lg);
    text-align: center;
    background: var(--warrantedmarket-gradient-primary);
    color: var(--warrantedmarket-white);
}

.warrantedmarket-pricing-header h3 {
    color: var(--warrantedmarket-white);
    margin-bottom: var(--space-sm);
}

.warrantedmarket-price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.warrantedmarket-price-period {
    font-size: 0.875rem;
    opacity: 0.8;
}

.warrantedmarket-pricing-features {
    padding: var(--space-lg);
}

.warrantedmarket-pricing-features ul li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.warrantedmarket-pricing-features i {
    color: var(--warrantedmarket-secondary);
}

.warrantedmarket-pricing-footer {
    padding: 0 var(--space-lg) var(--space-lg);
    text-align: center;
}

.warrantedmarket-featured {
    transform: scale(1.05);
    z-index: 2;
}

.warrantedmarket-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* FAQ Section */
.warrantedmarket-faq {
    padding: var(--space-xl) 0;
}

.warrantedmarket-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.warrantedmarket-accordion-item {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--warrantedmarket-white);
    box-shadow: var(--shadow-sm);
}

.warrantedmarket-accordion-header {
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(67, 138, 112, 0.05), rgba(82, 206, 186, 0.05));
    position: relative;
    transition: background var(--transition-normal);
}

.warrantedmarket-accordion-header:hover {
    background: linear-gradient(90deg, rgba(67, 138, 112, 0.1), rgba(82, 206, 186, 0.1));
}

.warrantedmarket-accordion-header h3 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.warrantedmarket-accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.warrantedmarket-accordion-icon::before,
.warrantedmarket-accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--warrantedmarket-primary);
    transition: transform var(--transition-normal);
}

.warrantedmarket-accordion-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.warrantedmarket-accordion-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.warrantedmarket-accordion-item.active .warrantedmarket-accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.warrantedmarket-accordion-content {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.warrantedmarket-accordion-item.active .warrantedmarket-accordion-content {
    padding: var(--space-md);
    max-height: 300px;
}

/* Newsletter */
.warrantedmarket-newsletter {
    padding: var(--space-xl) 0;
}

.warrantedmarket-newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--warrantedmarket-gradient-primary);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.warrantedmarket-newsletter-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.1"/></svg>');
    background-size: cover;
}

.warrantedmarket-newsletter-content {
    color: var(--warrantedmarket-white);
    position: relative;
}

.warrantedmarket-newsletter-content h2 {
    color: var(--warrantedmarket-white);
}

.warrantedmarket-newsletter-form {
    display: flex;
    gap: var(--space-sm);
    position: relative;
    flex-grow: 1;
    max-width: 500px;
}

.warrantedmarket-newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

/* Footer */
.warrantedmarket-footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--warrantedmarket-dark);
    color: var(--warrantedmarket-light);
    position: relative;
}

.warrantedmarket-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
}

.warrantedmarket-footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.warrantedmarket-footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--warrantedmarket-white);
    margin-bottom: var(--space-sm);
}

.warrantedmarket-social {
    display: flex;
    gap: var(--space-md);
}

.warrantedmarket-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--warrantedmarket-white);
    transition: all var(--transition-normal);
}

.warrantedmarket-social a:hover {
    background: var(--warrantedmarket-secondary);
    color: var(--warrantedmarket-dark);
    transform: translateY(-3px);
}

.warrantedmarket-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.warrantedmarket-footer-column h3 {
    color: var(--warrantedmarket-white);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
}

.warrantedmarket-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--warrantedmarket-secondary);
}

.warrantedmarket-footer-column ul li {
    margin-bottom: var(--space-sm);
}

.warrantedmarket-footer-column a {
    color: var(--warrantedmarket-light);
    transition: color var(--transition-normal);
}

.warrantedmarket-footer-column a:hover {
    color: var(--warrantedmarket-secondary);
}

.warrantedmarket-contact-info li,
.warrantedmarket-hours li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.warrantedmarket-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.warrantedmarket-footer-legal {
    display: flex;
    gap: var(--space-md);
}

/* ===== About Page Styles ===== */
/* About Story Section */
.warrantedmarket-about-story {
    padding: var(--space-xl) 0;
    position: relative;
}

.warrantedmarket-story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.warrantedmarket-story-text {
    padding-right: var(--space-lg);
}

.warrantedmarket-story-text blockquote {
    position: relative;
    font-style: italic;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--warrantedmarket-secondary);
    background: rgba(82, 206, 186, 0.05);
    border-radius: var(--radius-sm);
}

.warrantedmarket-story-text blockquote cite {
    display: block;
    margin-top: var(--space-sm);
    font-style: normal;
    font-weight: 600;
    color: var(--warrantedmarket-primary);
}

.warrantedmarket-story-image {
    position: relative;
    height: 400px;
}

.warrantedmarket-liquid-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Mission and Values Section */
.warrantedmarket-mission {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(138, 255, 180, 0.1) 100%);
}

.warrantedmarket-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.warrantedmarket-value {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.warrantedmarket-value:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warrantedmarket-gradient-accent);
    color: var(--warrantedmarket-dark);
    font-size: 2.5rem;
    border-radius: 50%;
}

/* Team Section */
.warrantedmarket-team {
    padding: var(--space-xl) 0;
}

.warrantedmarket-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.warrantedmarket-team-member {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.warrantedmarket-team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-member-photo {
    height: 200px;
    position: relative;
    overflow: hidden;

}


.warrantedmarket-liquid-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warrantedmarket-gradient-primary);
    clip-path: circle(40% at 50% 40%);
}

.warrantedmarket-member-info {
    padding: var(--space-lg);
}

.warrantedmarket-member-role {
    color: var(--warrantedmarket-secondary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.warrantedmarket-member-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.warrantedmarket-member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(67, 138, 112, 0.1);
    color: var(--warrantedmarket-primary);
    transition: all var(--transition-normal);
}

.warrantedmarket-member-social a:hover {
    background: var(--warrantedmarket-primary);
    color: var(--warrantedmarket-white);
}

.warrantedmarket-team-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Facilities Section */
.warrantedmarket-facilities {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(234, 255, 129, 0.1) 100%);
}

.warrantedmarket-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.warrantedmarket-facility {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
}

.warrantedmarket-facility:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-facility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--warrantedmarket-white);
    background: var(--warrantedmarket-gradient-primary);
    border-radius: 50%;
}

/* Testimonials Section */
.warrantedmarket-testimonials {
    padding: var(--space-xl) 0;
}

.warrantedmarket-testimonials-slider {
    position: relative;
    margin-bottom: var(--space-lg);
}

.warrantedmarket-testimonial-slide {
    display: none;
}

.warrantedmarket-testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.warrantedmarket-testimonial {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.warrantedmarket-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    line-height: 1;
    font-family: var(--font-display);
    color: rgba(67, 138, 112, 0.1);
}

.warrantedmarket-testimonial-content {
    position: relative;
    z-index: 1;
}

.warrantedmarket-testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: var(--space-md);
}

.warrantedmarket-testimonial-author {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.warrantedmarket-author-name {
    font-weight: 700;
    color: var(--warrantedmarket-primary);
}

.warrantedmarket-author-info {
    font-size: 0.875rem;
    opacity: 0.7;
}

.warrantedmarket-testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.warrantedmarket-testimonial-prev,
.warrantedmarket-testimonial-next {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--warrantedmarket-white);
    color: var(--warrantedmarket-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.warrantedmarket-testimonial-prev:hover,
.warrantedmarket-testimonial-next:hover {
    background: var(--warrantedmarket-primary);
    color: var(--warrantedmarket-white);
}

.warrantedmarket-testimonial-dots {
    display: flex;
    gap: var(--space-xs);
}

.warrantedmarket-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(67, 138, 112, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.warrantedmarket-testimonial-dot.active {
    background: var(--warrantedmarket-primary);
    transform: scale(1.2);
}

/* ===== Contact Page Styles ===== */
/* Contact Section */
.warrantedmarket-contact-section {
    padding: var(--space-xl) 0;
}

.warrantedmarket-contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.warrantedmarket-contact-info h2 {
    margin-bottom: var(--space-md);
}

.warrantedmarket-contact-methods {
    margin: var(--space-lg) 0;
    display: grid;
    gap: var(--space-md);
}

.warrantedmarket-contact-method {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.warrantedmarket-contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warrantedmarket-gradient-accent);
    color: var(--warrantedmarket-dark);
    border-radius: 50%;
    font-size: 1.5rem;
}

.warrantedmarket-contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.warrantedmarket-contact-details p {
    margin-bottom: var(--space-xs);
}

.warrantedmarket-contact-hours {
    font-size: 0.875rem;
    opacity: 0.7;
}

.warrantedmarket-social-connect {
    margin-top: var(--space-lg);
}

.warrantedmarket-social-icons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.warrantedmarket-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(67, 138, 112, 0.1);
    color: var(--warrantedmarket-primary);
    transition: all var(--transition-normal);
}

.warrantedmarket-social-icons a:hover {
    background: var(--warrantedmarket-primary);
    color: var(--warrantedmarket-white);
    transform: translateY(-3px);
}

.warrantedmarket-contact-form-wrapper {
    position: relative;
}

.warrantedmarket-form-container {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.warrantedmarket-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--warrantedmarket-gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.warrantedmarket-contact-form {
    margin-top: var(--space-lg);
    display: grid;
    gap: var(--space-md);
}

.warrantedmarket-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.warrantedmarket-form-group label {
    font-weight: 600;
    color: var(--warrantedmarket-dark);
}

.warrantedmarket-form-group input,
.warrantedmarket-form-group select,
.warrantedmarket-form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(19, 41, 33, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.warrantedmarket-form-group input:focus,
.warrantedmarket-form-group select:focus,
.warrantedmarket-form-group textarea:focus {
    outline: none;
    border-color: var(--warrantedmarket-secondary);
    box-shadow: 0 0 0 3px rgba(82, 206, 186, 0.2);
}

.warrantedmarket-form-checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.warrantedmarket-form-checkbox input {
    margin-top: 0.25rem;
}

.warrantedmarket-form-checkbox label {
    font-weight: 400;
    font-size: 0.875rem;
}

/* Map Section */
.warrantedmarket-map-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(138, 255, 180, 0.1) 100%);
}

.warrantedmarket-map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* FAQ Quick Links */
.warrantedmarket-faq-quick {
    padding: var(--space-xl) 0;
}

.warrantedmarket-faq-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.warrantedmarket-faq-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.warrantedmarket-faq-link:hover {
    background: var(--warrantedmarket-primary);
    color: var(--warrantedmarket-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-faq-link i {
    color: var(--warrantedmarket-secondary);
    font-size: 1.25rem;
}

.warrantedmarket-faq-link:hover i {
    color: var(--warrantedmarket-white);
}

.warrantedmarket-faq-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ===== Thank You Page Styles ===== */
.warrantedmarket-thank-you {
    padding: var(--space-xl) 0;
    background: linear-gradient(160deg, rgba(82, 206, 186, 0.1) 0%, rgba(138, 255, 180, 0.1) 100%);
}

.warrantedmarket-thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.warrantedmarket-thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warrantedmarket-gradient-accent);
    color: var(--warrantedmarket-dark);
    font-size: 3rem;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.warrantedmarket-thank-you-message {
    margin: var(--space-lg) 0;
}

.warrantedmarket-thank-you-animation {
    height: 100px;
    margin: var(--space-lg) 0;
    position: relative;
}

.warrantedmarket-liquid-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18.48 138.3 24.03 209.4 13.08 36.15-5.6 72.02-17.3 102.6-33.13V0z" fill="%2352CEBA" opacity="0.3"/></svg>');
    background-repeat: repeat-x;
    animation: wave 20s linear infinite;
}

.warrantedmarket-thank-you-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Expect Section */
.warrantedmarket-expect-section {
    padding: var(--space-xl) 0;
}

.warrantedmarket-expect-steps {
    max-width: 800px;
    margin: 0 auto;
}

.warrantedmarket-expect-step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.warrantedmarket-expect-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warrantedmarket-gradient-primary);
    color: var(--warrantedmarket-white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    border-radius: 50%;
}

/* Follow Section */
.warrantedmarket-follow-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(234, 255, 129, 0.1) 100%);
}

.warrantedmarket-follow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

.warrantedmarket-follow-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.warrantedmarket-social-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    background: var(--warrantedmarket-white);
    color: var(--warrantedmarket-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.warrantedmarket-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-social-btn:nth-child(1):hover {
    background: #3b5998;
    color: white;
}

.warrantedmarket-social-btn:nth-child(2):hover {
    background: #c13584;
    color: white;
}

.warrantedmarket-social-btn:nth-child(3):hover {
    background: #1da1f2;
    color: white;
}

/* ===== Privacy Policy & Terms Styles ===== */
.warrantedmarket-page-header {
    padding: 8rem 0 4rem;
    position: relative;
    background: linear-gradient(160deg, rgba(82, 206, 186, 0.1) 0%, rgba(138, 255, 180, 0.1) 100%);
    text-align: center;
}

.warrantedmarket-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    color: var(--warrantedmarket-dark);
}

.warrantedmarket-breadcrumbs a {
    color: var(--warrantedmarket-primary);
}

.warrantedmarket-breadcrumbs span {
    opacity: 0.7;
}

.warrantedmarket-privacy-content,
.warrantedmarket-terms-content {
    padding: var(--space-xl) 0;
}

.warrantedmarket-privacy-wrapper,
.warrantedmarket-terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-privacy-intro,
.warrantedmarket-terms-intro {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(19, 41, 33, 0.1);
}

.warrantedmarket-policy-section,
.warrantedmarket-terms-section {
    margin-bottom: var(--space-lg);
}

.warrantedmarket-policy-section h2,
.warrantedmarket-terms-section h2 {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(19, 41, 33, 0.05);
}

.warrantedmarket-policy-section h3,
.warrantedmarket-terms-section h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.warrantedmarket-policy-section ul,
.warrantedmarket-terms-section ul {
    margin: var(--space-sm) 0;
    padding-left: var(--space-lg);
}

.warrantedmarket-policy-section ul li,
.warrantedmarket-terms-section ul li {
    margin-bottom: var(--space-xs);
    position: relative;
    list-style-type: disc;
}

.warrantedmarket-contact-list {
    padding-left: 0 !important;
}

.warrantedmarket-contact-list li {
    list-style-type: none !important;
    padding-left: 0;
}

.warrantedmarket-terms-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(19, 41, 33, 0.1);
    font-style: italic;
}

/* ===== Quiz Page Styles ===== */
.warrantedmarket-quiz-intro {
    padding: var(--space-xl) 0;
    position: relative;
}

.warrantedmarket-quiz-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.warrantedmarket-quiz-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.warrantedmarket-quiz-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.warrantedmarket-quiz-benefit:hover {
    transform: translateY(-5px);
}

.warrantedmarket-benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warrantedmarket-gradient-accent);
    color: var(--warrantedmarket-dark);
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.warrantedmarket-benefit-text {
    text-align: center;
}

.warrantedmarket-benefit-text h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.warrantedmarket-quiz-animation {
    height: 200px;
    position: relative;
    margin-top: var(--space-lg);
}

.warrantedmarket-wave-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18.48 138.3 24.03 209.4 13.08 36.15-5.6 72.02-17.3 102.6-33.13V0z" fill="%2352CEBA" opacity="0.3"/><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18.48 138.3 24.03 209.4 13.08 36.15-5.6 72.02-17.3 102.6-33.13V0z" fill="%238AFFB4" opacity="0.2" transform="translate(0, 40)"/></svg>');
    background-repeat: repeat-x;
    animation: wave 20s linear infinite;
}

.warrantedmarket-quiz-container {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(138, 255, 180, 0.05) 100%);
}

.warrantedmarket-quiz-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-quiz-progress {
    margin-bottom: var(--space-lg);
}

.warrantedmarket-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(67, 138, 112, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.warrantedmarket-progress-fill {
    height: 100%;
    background: var(--warrantedmarket-gradient-primary);
    width: 0;
    transition: width 0.3s ease;
}

.warrantedmarket-progress-text {
    text-align: right;
    font-size: 0.875rem;
    color: var(--warrantedmarket-primary);
    font-weight: 600;
}

.warrantedmarket-quiz-question {
    display: none;
}

.warrantedmarket-quiz-question.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.warrantedmarket-quiz-question h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    text-align: center;
}

.warrantedmarket-quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.warrantedmarket-quiz-option {
    background: var(--warrantedmarket-white);
    border: 2px solid rgba(67, 138, 112, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.warrantedmarket-quiz-option:hover {
    transform: translateY(-3px);
    border-color: var(--warrantedmarket-secondary);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-quiz-option.active {
    border-color: var(--warrantedmarket-primary);
    background: rgba(67, 138, 112, 0.05);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 138, 112, 0.1);
    color: var(--warrantedmarket-primary);
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: var(--space-md);
    transition: all var(--transition-fast);
}

.warrantedmarket-quiz-option:hover .warrantedmarket-option-icon,
.warrantedmarket-quiz-option.active .warrantedmarket-option-icon {
    background: var(--warrantedmarket-primary);
    color: var(--warrantedmarket-white);
}

.warrantedmarket-option-text {
    font-weight: 500;
}

.warrantedmarket-quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-lg);
}

.warrantedmarket-quiz-results {
    padding: var(--space-xl) 0;
}

.warrantedmarket-results-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.warrantedmarket-results-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(67, 138, 112, 0.1);
}

.warrantedmarket-result-card {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    border: 2px solid rgba(67, 138, 112, 0.1);
}

.warrantedmarket-result-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--warrantedmarket-white);
    font-size: 2rem;
    margin: 0 auto var(--space-md);
}

.warrantedmarket-result-card h3 {
    text-align: center;
    margin-bottom: var(--space-md);
    font-size: 1.75rem;
}

.warrantedmarket-result-benefits {
    margin: var(--space-lg) 0;
}

.warrantedmarket-result-benefits h4,
.warrantedmarket-result-ideal h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--warrantedmarket-primary);
}

.warrantedmarket-result-benefits ul {
    padding-left: 0;
}

.warrantedmarket-result-benefits ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    list-style-type: none;
}

.warrantedmarket-result-benefits ul li i {
    color: var(--warrantedmarket-secondary);
}

.warrantedmarket-ideal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.warrantedmarket-ideal-tag {
    background: rgba(67, 138, 112, 0.1);
    color: var(--warrantedmarket-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
}

.warrantedmarket-result-card .warrantedmarket-btn {
    margin-top: var(--space-lg);
    display: block;
    width: 100%;
}

.warrantedmarket-other-recommendations {
    margin: var(--space-xl) 0;
}

.warrantedmarket-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.warrantedmarket-recommendation-card {
    background: var(--warrantedmarket-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.warrantedmarket-recommendation-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.warrantedmarket-rec-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--warrantedmarket-white);
    font-size: 1.5rem;
    margin: 0 auto var(--space-sm);
}

.warrantedmarket-recommendation-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.warrantedmarket-recommendation-card p {
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.warrantedmarket-results-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.warrantedmarket-results-disclaimer {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(67, 138, 112, 0.1);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Call to Action Section (Common on multiple pages) */
.warrantedmarket-cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(234, 255, 129, 0.1) 100%);
}

.warrantedmarket-cta-box {
    background: var(--warrantedmarket-gradient-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: var(--warrantedmarket-white);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.warrantedmarket-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.1"/></svg>');
    background-size: cover;
}

.warrantedmarket-cta-box h2 {
    color: var(--warrantedmarket-white);
    margin-bottom: var(--space-md);
}

.warrantedmarket-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Responsive styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .warrantedmarket-hero {
        padding: 7rem 0 5rem;
    }
}

@media (max-width: 992px) {
    .warrantedmarket-footer-content {
        grid-template-columns: 1fr;
    }

    .warrantedmarket-newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .warrantedmarket-newsletter-content {
        margin-bottom: var(--space-md);
    }

    .warrantedmarket-trial-content {
        gap: var(--space-lg);
    }

    .warrantedmarket-story-content,
    .warrantedmarket-contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .warrantedmarket-testimonial-slide {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
    }

    body {
        font-size: 0.9375rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .warrantedmarket-menu-toggle {
        display: block;
    }
    /* Update this block in style.css */
    .warrantedmarket-nav {
        position: fixed;
        top: 0; /* Menu-n misht sksvi ekrani skzbic */
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh; /* Menu-n kpahi ekrani amboghj bardzutyun@ */
        background-color: var(--warrantedmarket-light);
        padding: var(--space-xl);
        padding-top: 80px;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .warrantedmarket-nav.active {
        /* Show the menu when the 'active' class is added */
        transform: translateX(0);
    }

    .menu-open {
        overflow: hidden;
    }

    .warrantedmarket-menu {
        flex-direction: column;
    }

    .warrantedmarket-hero-cta {
        justify-content: center;
    }

    .warrantedmarket-pricing-cards {
        gap: var(--space-xl);
    }

    .warrantedmarket-featured {
        transform: none;
    }

    .warrantedmarket-featured:hover {
        transform: translateY(-5px);
    }

    .warrantedmarket-copyright {
        flex-direction: column;
        text-align: center;
    }

    .warrantedmarket-footer-legal {
        justify-content: center;
    }

    .warrantedmarket-privacy-wrapper,
    .warrantedmarket-terms-wrapper,
    .warrantedmarket-quiz-wrapper,
    .warrantedmarket-results-wrapper {
        padding: var(--space-lg);
    }

    .warrantedmarket-quiz-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --space-xl: 2.5rem;
        --space-lg: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .warrantedmarket-hero {
        padding: 6rem 0 4rem;
    }

    .warrantedmarket-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .warrantedmarket-hero-cta .warrantedmarket-btn {
        width: 100%;
    }

    .warrantedmarket-newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .warrantedmarket-newsletter-form input,
    .warrantedmarket-newsletter-form button {
        width: 100%;
    }

    .warrantedmarket-pricing-card {
        margin: 0 auto;
        max-width: 300px;
    }

    .warrantedmarket-accordion-header h3 {
        font-size: 1rem;
    }

    .warrantedmarket-contact-method {
        flex-direction: column;
        text-align: center;
    }

    .warrantedmarket-contact-icon {
        margin: 0 auto var(--space-sm);
    }

    .warrantedmarket-results-actions {
        flex-direction: column;
    }

    .warrantedmarket-results-actions .warrantedmarket-btn {
        width: 100%;
    }

    .warrantedmarket-quiz-navigation {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .warrantedmarket-quiz-navigation .warrantedmarket-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    :root {
        --space-xl: 2rem;
        --space-lg: 1.25rem;
        --space-md: 0.75rem;
    }

    body {
        font-size: 0.875rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    .warrantedmarket-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .warrantedmarket-feature,
    .warrantedmarket-product-content,
    .warrantedmarket-pricing-header,
    .warrantedmarket-pricing-features,
    .warrantedmarket-pricing-footer {
        padding: var(--space-md);
    }
}

/* Animation Classes for AOS */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-15deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}