/* ====================================
   عقار شات | Aqar Chat - Main Styles
   ==================================== */



/* ToshA Font (Local) */
@font-face {
  font-family: "ToshA";
  src: url("../assets/fonts/ToshA-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ToshA";
  src: url("../assets/fonts/ToshA-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ToshA";
  src: url("../assets/fonts/ToshA-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html, body {
  font-family: "ToshA", "Tajawal", "IBM Plex Sans Arabic", Arial, sans-serif;
}


/* CSS Variables */
:root {
    /* Brand Colors */
    --primary-color: #00DFC4;
    --primary-dark: #00b89d;
    --primary-light: #33e6d0;
    
    /* Secondary Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Accent Colors */
    --red-accent: #ef4444;
    --green-accent: #10b981;
    --blue-accent: #3b82f6;
    
    /* Typography */
    --font-primary: "ToshA", "IBM Plex Sans Arabic", "Tajawal", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: "ToshA", "IBM Plex Sans Arabic", "Tajawal", -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--gray-700);
}

/* Section Spacing */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 900;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Highlight Styles */
.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight-red {
    color: var(--red-accent);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0fffe 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: var(--spacing-xl);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 223, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 223, 196, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md) 0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.lang-btn {
    padding: 0.5rem 1.5rem;
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Logo */
.logo-container {
    margin-bottom: var(--spacing-md);
}

.logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 223, 196, 0.3));
    transition: transform var(--transition-base);
}

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

@media (max-width: 768px) {
    .logo {
        width: 220px;
    }
}

/* Hero Headline */
.hero-headline {
    margin-bottom: var(--spacing-sm);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.stat-divider {
    color: var(--gray-300);
    font-size: 1.5rem;
}

/* Chat Mockup */
.hero-visual {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chat-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-info i {
    font-size: 2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
}

.chat-title h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.online {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.chat-messages {
    padding: 1.5rem;
    background: #f0f2f5;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-bubble {
    background: var(--primary-color);
    color: var(--white);
    margin-left: auto;
}

.ai-message .message-bubble {
    background: var(--white);
    color: var(--gray-900);
}

.message-bubble {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    max-width: 80%;
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-time {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30% { transform: translateY(-10px); opacity: 1; }
}

/* Property Card Mini */
.property-card-mini {
    display: flex;
    gap: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 1rem;
    border: 1px solid var(--gray-200);
}

.property-mini-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.property-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.property-mini-info h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.property-mini-info .price {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.property-mini-info .details {
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding-bottom: var(--spacing-lg);
}

.scroll-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.scroll-icon:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ====================================
   PROBLEM SECTION
   ==================================== */
.problem-section {
    background: var(--white);
    position: relative;
    z-index: 2;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (max-width: 992px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.text-content .section-title {
    text-align: right;
    margin-bottom: var(--spacing-md);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.problem-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-accent);
    font-size: 1.5rem;
}

.problem-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.problem-text p {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Chaos Visual */
.chaos-visual {
    position: relative;
    padding: 2rem;
}

.chaos-screens {
    position: relative;
    height: 400px;
}

.chaos-screen {
    position: absolute;
    width: 200px;
    height: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    animation: chaos-float 3s ease-in-out infinite;
}

.screen-1 {
    top: 0;
    right: 0;
    transform: rotate(-8deg);
    z-index: 3;
}

.screen-2 {
    top: 50px;
    right: 100px;
    transform: rotate(5deg);
    z-index: 2;
    animation-delay: 0.5s;
}

.screen-3 {
    top: 100px;
    right: 200px;
    transform: rotate(-3deg);
    z-index: 1;
    animation-delay: 1s;
}

@keyframes chaos-float {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-15px) rotate(var(--rotate, 0deg)); }
}

.screen-header {
    height: 40px;
    background: var(--gray-200);
}

.screen-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fake-filter {
    height: 30px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chaos-emoji {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    animation: spin 4s ease-in-out infinite;
}

@keyframes spin {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(180deg); }
}

/* ====================================
   SOLUTION SECTION
   ==================================== */
.solution-section {
    background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
}

.transformation-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-lg);
}

@media (max-width: 992px) {
    .transformation-visual {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .transform-arrow {
        transform: rotate(90deg);
    }
}

.transform-side {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.chaos-side {
    border-color: rgba(239, 68, 68, 0.3);
}

.order-side {
    border-color: rgba(0, 223, 196, 0.3);
}

.transform-label {
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.chaos-elements, .order-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chaos-element, .order-element {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.chaos-element i {
    font-size: 1.5rem;
    color: var(--red-accent);
}

.order-element i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.chaos-element span, .order-element span {
    font-weight: 500;
    color: var(--gray-700);
}

.transform-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* ====================================
   HOW IT WORKS SECTION
   ==================================== */
.how-it-works {
    background: var(--white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.step-description {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Flow Visual */
.flow-visual {
    margin-top: var(--spacing-lg);
}

.flow-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .flow-card {
        flex-direction: column;
    }
}

.flow-input, .flow-output {
    flex: 1;
}

.flow-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.flow-input i {
    font-size: 2rem;
    color: var(--primary-color);
}

.flow-input span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
}

.flow-process {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brain-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: brain-pulse 2s ease-in-out infinite;
}

@keyframes brain-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.process-wave {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: scaleX(1); opacity: 0.5; }
    50% { transform: scaleX(1.5); opacity: 1; }
}

.output-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-md);
    color: var(--white);
}

.output-card i {
    font-size: 2rem;
}

.output-card span {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ====================================
   WHY DIFFERENT SECTION
   ==================================== */
.why-different {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

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

@media (min-width: 769px) and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    position: relative;
}

.hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ====================================
   CHAT EXAMPLES SECTION
   ==================================== */
.chat-examples {
    background: var(--white);
}

.examples-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

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

.example-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
}

.example-card.full-width {
    grid-column: 1 / -1;
}

.example-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.example-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.ai-avatar {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white);
}

.example-message .message-bubble {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 85%;
}

.example-message.user .message-bubble {
    background: var(--primary-color);
    color: var(--white);
    margin-left: auto;
}

/* Result Card */
.result-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.result-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.result-header h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
}

.result-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.result-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.result-size {
    font-size: 1rem;
    color: var(--gray-600);
}

.result-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Advice Card */
.advice-card {
    background: linear-gradient(135deg, #f0fffe, #ffffff);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.advice-rank {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.advice-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.advice-info p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.advice-reason {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.about-section .section-title {
    color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-icon {
    margin-bottom: var(--spacing-md);
}

.hexagon-large {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    animation: rotate-hexagon 20s linear infinite;
}

@keyframes rotate-hexagon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.about-feature i {
    color: var(--white);
    font-size: 1.5rem;
}

.about-feature span {
    font-size: 1rem;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about-stat {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

/* Company Info */
.company-info {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: right;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--gray-200);
    font-weight: 600;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.info-value a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-tagline {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

/* Company Info */
.company-info {
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: right;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--gray-200);
    font-weight: 600;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.info-value a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ====================================
   AOS ANIMATION OVERRIDES
   ==================================== */
[data-aos] {
    pointer-events: auto;
}

/* ====================================
   RESPONSIVE ADJUSTMENTS
   ==================================== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0 var(--spacing-xl);
    }
    
    .hero-visual {
        margin-bottom: var(--spacing-lg);
    }
    
    .logo {
        width: 140px;
    }
    
    .chat-mockup {
        margin: 0 -1rem;
    }
    }
    
    .chaos-screens {
        height: 300px;
    }
    
    .chaos-screen {
        width: 150px;
        height: 220px;
    }
    
    .screen-1 { right: -20px; }
    .screen-2 { right: 50px; }
    .screen-3 { right: 120px; }
}

/* ====================================
   WHATSAPP CTA (Added)
   ==================================== */
.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 223, 196, 0.35);
    transition: all 0.3s ease;
}

.cta-whatsapp i {
    font-size: 1.4rem;
}

.cta-whatsapp:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 223, 196, 0.45);
}

/* Floating WhatsApp button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Mobile tweak */
@media (max-width: 768px) {
    .cta-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem;
        font-size: 1.05rem;
    }
    .floating-whatsapp {
        width: 58px;
        height: 58px;
        bottom: 18px;
        right: 18px;
    }
}
