/* ========================================
   Avurudu Udanaya 2026 - Sponsorship Microsite
   Theme & Component Styles
   ======================================== */

/* ----- Avurudu Color Theme ----- */
:root {
    --avurudu-gold: #D4A017;
    --avurudu-gold-light: #E8C547;
    --avurudu-gold-dark: #B8860B;
    --avurudu-red: #8B1A1A;
    --avurudu-red-light: #A52A2A;
    --avurudu-cream: #FFF8E7;
    --avurudu-cream-dark: #F5ECD0;
    --avurudu-green: #2D6A2D;
    --avurudu-green-light: #3D8B3D;
    --avurudu-orange: #C45E1A;
    --avurudu-purple: #6B2D6B;
    --avurudu-text: #2D2420;
    --avurudu-text-light: #5C4F47;
    --avurudu-text-muted: #8C7E75;
    --avurudu-border: #E8DCC8;
    --avurudu-surface: #FFFFFF;
}

/* ----- Avurudu Header ----- */
.avurudu-header {
    background: linear-gradient(135deg, #8B1A1A 0%, #6B1515 50%, #4A0F0F 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(139, 26, 26, 0.3);
}

.avurudu-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--avurudu-gold), var(--avurudu-gold-light), var(--avurudu-gold));
}

.avurudu-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.avurudu-header .header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.avurudu-header .header-logo-icon {
    font-size: 1.75rem;
}

.avurudu-header .header-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--avurudu-gold-light);
    line-height: 1.2;
}

.avurudu-header .header-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.avurudu-header .header-nav {
    display: flex;
    gap: 0.25rem;
}

.avurudu-header .header-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.avurudu-header .header-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.avurudu-header .header-nav a.active {
    color: var(--avurudu-gold-light);
    background: rgba(212, 160, 23, 0.15);
}

.avurudu-header .header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avurudu-header .back-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.avurudu-header .back-link:hover {
    color: white;
}

.avurudu-header .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ----- Avurudu Hero ----- */
.avurudu-hero {
    background: linear-gradient(135deg, #8B1A1A 0%, #6B1515 40%, #4A0F0F 100%);
    color: white;
    text-align: center;
    padding: 4rem 1.5rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.avurudu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.avurudu-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.avurudu-hero .hero-badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--avurudu-gold-light);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.avurudu-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.avurudu-hero h1 span {
    color: var(--avurudu-gold-light);
}

.avurudu-hero .hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.avurudu-hero .hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.avurudu-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.avurudu-hero .hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ----- Avurudu Buttons ----- */
.btn-avurudu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    min-height: 48px;
}

.btn-avurudu-primary {
    background: linear-gradient(135deg, var(--avurudu-gold), var(--avurudu-gold-dark));
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-avurudu-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.btn-avurudu-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-avurudu-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-avurudu-red {
    background: linear-gradient(135deg, var(--avurudu-red), var(--avurudu-red-light));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
}

.btn-avurudu-red:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 26, 26, 0.4);
}

/* ----- Page Sections ----- */
.avurudu-section {
    padding: 4rem 1.5rem;
}

.avurudu-section-alt {
    background: var(--avurudu-cream);
}

.avurudu-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.avurudu-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.avurudu-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--avurudu-red);
    margin-bottom: 0.75rem;
}

.avurudu-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--avurudu-gold), var(--avurudu-gold-light));
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.avurudu-section-header p {
    color: var(--avurudu-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
}

/* ----- Selling Point Cards ----- */
.selling-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.selling-point-card {
    background: var(--avurudu-surface);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--avurudu-border);
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.selling-point-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--avurudu-gold);
}

.selling-point-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.selling-point-icon-gold { background: linear-gradient(135deg, #FFF3D6, #FFE5A0); }
.selling-point-icon-red { background: linear-gradient(135deg, #FFE0E0, #FFBDBD); }
.selling-point-icon-green { background: linear-gradient(135deg, #D6F5D6, #A8E6A8); }
.selling-point-icon-blue { background: linear-gradient(135deg, #D6EAFF, #A8D4FF); }
.selling-point-icon-purple { background: linear-gradient(135deg, #F0D6FF, #DDA8FF); }

.selling-point-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--avurudu-text);
    margin-bottom: 0.5rem;
}

.selling-point-card p {
    font-size: 0.9rem;
    color: var(--avurudu-text-light);
    line-height: 1.55;
}

/* ----- Sponsorship Tier Cards ----- */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tier-card {
    background: var(--avurudu-surface);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--avurudu-border);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.tier-card.tier-main {
    border-color: var(--avurudu-gold);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.15);
}

.tier-card.tier-main::before {
    content: 'TITLE SPONSOR';
    position: absolute;
    top: 14px;
    right: -32px;
    background: var(--avurudu-gold);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.tier-card.tier-gold { border-color: #C9A534; }
.tier-card.tier-silver { border-color: #A0A0A0; }
.tier-card.tier-bronze { border-color: #CD7F32; }

.tier-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tier-badge-main { background: linear-gradient(135deg, #FFF3D6, #FFE5A0); color: #8B6914; }
.tier-badge-gold { background: linear-gradient(135deg, #FFF8E1, #FFE082); color: #7E6514; }
.tier-badge-silver { background: linear-gradient(135deg, #F0F0F0, #D0D0D0); color: #555; }
.tier-badge-bronze { background: linear-gradient(135deg, #FFE8D6, #FFCC99); color: #8B5E3C; }

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--avurudu-red);
    margin-bottom: 0.25rem;
}

.tier-price-note {
    font-size: 0.8rem;
    color: var(--avurudu-text-muted);
    margin-bottom: 1.25rem;
}

.tier-slots {
    display: inline-block;
    background: var(--avurudu-cream);
    color: var(--avurudu-text-light);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.tier-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tier-highlights li {
    padding: 0.45rem 0;
    font-size: 0.875rem;
    color: var(--avurudu-text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.tier-highlights li::before {
    content: '✓';
    color: var(--avurudu-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* ----- Benefits Comparison Table ----- */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--avurudu-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tier-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--avurudu-surface);
    min-width: 700px;
}

.tier-comparison-table thead th {
    background: linear-gradient(135deg, #8B1A1A, #6B1515);
    color: white;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.tier-comparison-table thead th:first-child {
    text-align: left;
    min-width: 200px;
}

.tier-comparison-table thead th .tier-th-price {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.tier-comparison-table tbody td {
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
    color: var(--avurudu-text);
    text-align: center;
    border-bottom: 1px solid var(--avurudu-border);
}

.tier-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--avurudu-text);
}

.tier-comparison-table tbody tr:hover {
    background: rgba(212, 160, 23, 0.04);
}

.tier-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.table-check {
    color: var(--avurudu-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.table-cross {
    color: var(--avurudu-text-muted);
    font-size: 1.1rem;
}

.table-highlight {
    background: rgba(212, 160, 23, 0.06);
}

/* ----- Phone Frame Mockup ----- */
.phone-frame {
    width: 300px;
    margin: 0 auto;
    border-radius: 40px;
    background: #1a1a1a;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 0 0 2px #333;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #555;
    border-radius: 2px;
    z-index: 10;
}

.phone-screen {
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    min-height: 520px;
    position: relative;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #f8f8f8;
}

.phone-screen-content {
    padding: 0;
}

/* Phone screen internal components */
.mockup-header {
    background: linear-gradient(135deg, var(--avurudu-red), var(--avurudu-red-light));
    color: white;
    padding: 1rem;
    text-align: center;
}

.mockup-header h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.mockup-header p {
    font-size: 0.7rem;
    opacity: 0.8;
}

.mockup-sponsor-banner {
    background: linear-gradient(135deg, var(--avurudu-gold), var(--avurudu-gold-dark));
    color: #1a1a1a;
    text-align: center;
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
}

.mockup-body {
    padding: 1rem;
}

.mockup-field {
    margin-bottom: 0.75rem;
}

.mockup-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.25rem;
}

.mockup-field input,
.mockup-field select {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #888;
    background: #fafafa;
    box-sizing: border-box;
}

.mockup-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    color: var(--avurudu-text-light);
}

.mockup-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--avurudu-green);
}

.mockup-checkbox .preticked {
    color: var(--avurudu-green);
    font-weight: 600;
    font-size: 0.6rem;
}

.mockup-btn {
    display: block;
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    cursor: default;
}

.mockup-btn-primary {
    background: linear-gradient(135deg, var(--avurudu-red), var(--avurudu-red-light));
    color: white;
}

.mockup-btn-gold {
    background: linear-gradient(135deg, var(--avurudu-gold), var(--avurudu-gold-dark));
    color: #1a1a1a;
}

.mockup-divider {
    height: 1px;
    background: #eee;
    margin: 0.75rem 0;
}

.mockup-footer {
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.6rem;
    color: #999;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.mockup-countdown-banner {
    background: linear-gradient(135deg, var(--avurudu-green), var(--avurudu-green-light));
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Food menu items */
.mockup-menu-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--avurudu-red);
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--avurudu-border);
}

.mockup-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.72rem;
}

.mockup-menu-item .name {
    color: var(--avurudu-text);
}

.mockup-menu-item .price {
    color: var(--avurudu-text-muted);
    font-weight: 600;
}

/* Order / checkout mockup */
.mockup-order-number {
    background: var(--avurudu-cream);
    border: 2px dashed var(--avurudu-gold);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin: 0.75rem 0;
}

.mockup-order-number .label {
    font-size: 0.7rem;
    color: var(--avurudu-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-order-number .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--avurudu-red);
    line-height: 1.2;
}

/* QR code mockup */
.mockup-qr {
    width: 120px;
    height: 120px;
    background: white;
    border: 2px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    position: relative;
}

.mockup-qr-grid {
    width: 90px;
    height: 90px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 1px;
}

.mockup-qr-grid span {
    background: #1a1a1a;
    border-radius: 1px;
}

.mockup-qr-grid span:nth-child(even) {
    background: transparent;
}

.mockup-qr-grid span:nth-child(3n+1) {
    background: #1a1a1a;
}

/* Signage mockup */
.mockup-signage {
    background: linear-gradient(135deg, var(--avurudu-cream), var(--avurudu-cream-dark));
    border: 3px solid var(--avurudu-red);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.mockup-signage h4 {
    color: var(--avurudu-red);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.mockup-signage p {
    font-size: 0.7rem;
    color: var(--avurudu-text-light);
}

/* ----- Spin Wheel ----- */
.spin-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.spin-wheel {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(
        var(--avurudu-gold) 0deg 72deg,
        var(--avurudu-red) 72deg 144deg,
        var(--avurudu-green) 144deg 216deg,
        var(--avurudu-orange) 216deg 288deg,
        var(--avurudu-purple) 288deg 360deg
    );
    position: relative;
    border: 6px solid #1a1a1a;
    box-shadow: 0 0 0 3px var(--avurudu-gold), 0 8px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.spin-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.spin-wheel::after {
    content: '▼';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--avurudu-red);
    z-index: 3;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.spin-wheel-label {
    position: absolute;
    font-size: 0.55rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 70px;
    text-align: center;
    line-height: 1.2;
}

.spin-wheel-label:nth-child(1) { top: 20%; left: 58%; transform: rotate(36deg); }
.spin-wheel-label:nth-child(2) { top: 58%; left: 65%; transform: rotate(108deg); }
.spin-wheel-label:nth-child(3) { top: 70%; left: 25%; transform: rotate(180deg); }
.spin-wheel-label:nth-child(4) { top: 40%; left: 5%; transform: rotate(252deg); }
.spin-wheel-label:nth-child(5) { top: 8%; left: 20%; transform: rotate(324deg); }

.spin-btn-mockup {
    margin-top: 1rem;
    padding: 0.6rem 2.5rem;
    background: linear-gradient(135deg, var(--avurudu-gold), var(--avurudu-gold-dark));
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: default;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.spin-win-banner {
    background: linear-gradient(135deg, var(--avurudu-green), var(--avurudu-green-light));
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 0.75rem;
}

.spin-win-banner .win-text {
    font-size: 1rem;
    font-weight: 700;
}

.spin-win-banner .win-prize {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* ----- Step Flow ----- */
.step-flow {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.step-item:nth-child(even) {
    direction: rtl;
}

.step-item:nth-child(even) > * {
    direction: ltr;
}

.step-info {
    padding: 1rem 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--avurudu-red), var(--avurudu-red-light));
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
}

.step-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--avurudu-text);
    margin-bottom: 0.75rem;
}

.step-info p {
    font-size: 0.95rem;
    color: var(--avurudu-text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.step-highlight {
    background: var(--avurudu-cream);
    border-left: 3px solid var(--avurudu-gold);
    padding: 0.75rem 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    color: var(--avurudu-text);
}

.step-highlight strong {
    color: var(--avurudu-red);
}

/* ----- Desktop Frame Mockup ----- */
.desktop-frame {
    border-radius: 12px;
    border: 2px solid #ddd;
    background: var(--avurudu-surface);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.desktop-toolbar {
    background: #f5f5f5;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.desktop-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.desktop-dot:nth-child(1) { background: #ff5f57; }
.desktop-dot:nth-child(2) { background: #ffbd2e; }
.desktop-dot:nth-child(3) { background: #28c840; }

.desktop-url-bar {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: #888;
    margin-left: 12px;
}

.desktop-content {
    padding: 0;
    min-height: 500px;
}

/* Dashboard mockup components */
.dashboard-header {
    background: linear-gradient(135deg, var(--avurudu-red), #6B1515);
    color: white;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.dashboard-header .dashboard-user {
    font-size: 0.8rem;
    opacity: 0.8;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: var(--avurudu-cream);
}

.dashboard-stat {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dashboard-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--avurudu-red);
    line-height: 1.1;
}

.dashboard-stat .stat-label {
    font-size: 0.75rem;
    color: var(--avurudu-text-muted);
    margin-top: 0.25rem;
}

.dashboard-body {
    padding: 1.5rem 2rem;
}

.dashboard-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--avurudu-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.dashboard-table thead th {
    background: #f8f5f0;
    padding: 0.65rem 0.85rem;
    text-align: left;
    font-weight: 600;
    color: var(--avurudu-text-light);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--avurudu-border);
}

.dashboard-table tbody td {
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid #f0ebe3;
    color: var(--avurudu-text);
}

.dashboard-table tbody tr:hover {
    background: rgba(212, 160, 23, 0.03);
}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: default;
}

.dashboard-btn-primary {
    background: var(--avurudu-red);
    color: white;
}

.dashboard-btn-outline {
    background: transparent;
    border: 1px solid var(--avurudu-border);
    color: var(--avurudu-text-light);
}

/* ----- Live Pulse Animation ----- */
.live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--avurudu-green);
}

.live-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--avurudu-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(45, 106, 45, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(45, 106, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 106, 45, 0); }
}

/* ----- Contact / Register Interest Form ----- */
.avurudu-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--avurudu-surface);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--avurudu-border);
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--avurudu-text);
    margin-bottom: 0.4rem;
}

.form-group label .required {
    color: var(--avurudu-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--avurudu-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--avurudu-text);
    background: var(--avurudu-surface);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--avurudu-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--avurudu-red), var(--avurudu-red-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 26, 26, 0.3);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--avurudu-green);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--avurudu-text-light);
    line-height: 1.6;
}

.form-error {
    background: #FFF0F0;
    border: 1px solid #FFBDBD;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--avurudu-red);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    display: none;
}

/* ----- CTA Section ----- */
.avurudu-cta {
    background: linear-gradient(135deg, #8B1A1A 0%, #6B1515 50%, #4A0F0F 100%);
    color: white;
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
}

.avurudu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.avurudu-cta .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.avurudu-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.avurudu-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.avurudu-cta .cta-contact {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.avurudu-cta .cta-contact a {
    color: var(--avurudu-gold-light);
    text-decoration: none;
}

.avurudu-cta .cta-contact a:hover {
    text-decoration: underline;
}

/* ----- Charity Badge ----- */
.charity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    color: var(--avurudu-gold-light);
    margin-top: 1rem;
}

.charity-badge-dark {
    background: var(--avurudu-cream);
    border-color: var(--avurudu-border);
    color: var(--avurudu-text-light);
}

/* ----- Privacy Note ----- */
.privacy-note {
    background: var(--avurudu-cream);
    border: 1px solid var(--avurudu-border);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.privacy-note h4 {
    font-size: 1rem;
    color: var(--avurudu-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-note p {
    font-size: 0.875rem;
    color: var(--avurudu-text-light);
    line-height: 1.6;
}

/* ----- Footer ----- */
.avurudu-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem 1.5rem;
}

.avurudu-footer p {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.avurudu-footer a {
    color: var(--avurudu-gold-light);
    text-decoration: none;
}

.avurudu-footer a:hover {
    text-decoration: underline;
}

/* ----- Intro Grid ----- */
.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--avurudu-text-light);
    line-height: 1.7;
}

.intro-text p {
    margin-bottom: 1rem;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-stat {
    background: var(--avurudu-surface);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--avurudu-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.intro-stat .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--avurudu-red);
}

.intro-stat .stat-text {
    font-size: 0.8rem;
    color: var(--avurudu-text-muted);
    margin-top: 0.15rem;
}

/* ----- Contact Info Cards ----- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 640px;
    margin: 2rem auto 0;
}

.contact-info-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--avurudu-cream);
    border-radius: 10px;
    border: 1px solid var(--avurudu-border);
}

.contact-info-card .info-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--avurudu-text-light);
}

.contact-info-card a {
    color: var(--avurudu-red);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
    .step-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-item:nth-child(even) {
        direction: ltr;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem;
    }

    .desktop-frame {
        margin: 0 -0.5rem;
        border-radius: 8px;
    }

    .dashboard-body {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .avurudu-header .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6B1515, #4A0F0F);
        flex-direction: column;
        padding: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .avurudu-header .header-nav.active {
        display: flex;
    }

    .avurudu-header .header-nav a {
        padding: 0.75rem 1rem;
    }

    .avurudu-header .menu-toggle {
        display: block;
    }

    .avurudu-hero h1 {
        font-size: 1.85rem;
    }

    .avurudu-hero .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .avurudu-section {
        padding: 3rem 1rem;
    }

    .avurudu-section-header h2 {
        font-size: 1.65rem;
    }

    .selling-points-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .phone-frame {
        width: 270px;
    }

    .phone-screen {
        min-height: 460px;
    }

    .step-flow {
        gap: 3rem;
    }

    .avurudu-form {
        padding: 1.5rem;
    }

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

    .avurudu-cta h2 {
        font-size: 1.5rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .desktop-toolbar {
        padding: 8px 10px;
    }

    .desktop-url-bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .avurudu-hero {
        padding: 3rem 1rem 2.5rem;
    }

    .avurudu-hero h1 {
        font-size: 1.5rem;
    }

    .selling-points-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        width: 250px;
    }

    .spin-wheel {
        width: 180px;
        height: 180px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-avurudu {
        width: 100%;
        max-width: 280px;
    }
}
