:root {
    /* Ultra-Premium Crisp Theme */
    --primary: #e11d48; /* Crimson Wow */
    --primary-light: #f43f5e;
    --primary-dark: #be123c;
    --secondary: #10b981; /* Emerald Wow */
    --secondary-light: #34d399;
    --secondary-dark: #047857;
    
    --bg-dark: #fafafa; /* Crisp light ambient background */
    --bg-surface: #ffffff;
    --bg-surface-light: #f8fafc;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    
    --radius: 24px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-border-dark: rgba(0, 0, 0, 0.05);
    
    --shadow: 0 10px 40px -10px rgba(0,0,0,0.06);
    --shadow-hover: 0 20px 50px -10px rgba(0,0,0,0.12);
    --glow: 0 0 40px rgba(225, 29, 72, 0.12);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Ambient Background orbs */
body::before {
    content: '';
    position: fixed;
    top: -20%; left: -10%; width: 70%; height: 70%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.08; filter: blur(120px); z-index: -1;
    animation: drift 20s infinite alternate ease-in-out;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%; right: -10%; width: 70%; height: 70%;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 60%);
    opacity: 0.08; filter: blur(120px); z-index: -1;
    animation: drift 25s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

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

/* Floating Pill Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    margin: 1.5rem auto;
    max-width: 1200px;
    width: 90%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-dark);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08), inset 0 0 0 1px var(--glass-border);
    border-radius: 9999px;
    position: sticky;
    top: 1.5rem;
    z-index: 100;
}

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

.brand img {
    max-height: 45px;
    transition: transform 0.3s;
}

.brand:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

/* Premium Glassmorphism Cards */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-dark);
    box-shadow: inset 0 0 0 1px var(--glass-border), var(--shadow);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 0 0 1px var(--glass-border), var(--shadow-hover), var(--glow);
    border-color: rgba(225, 29, 72, 0.15);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 5% 4rem;
    /* Reduced top padding */
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(142, 21, 41, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* Brands Slider */
.slider-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    margin-top: 1rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    /* Animation injected inline via PHP depending on layout */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}

.slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: transparent;
}

.slider-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.4s ease;
}

.slider-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Informational Info Blocks */
.info-section {
    padding: 5rem 5%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    background: rgba(142, 21, 41, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.info-card p {
    color: var(--text-muted);
}

/* Forms */
.form-section {
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.form-container {
    width: 100%;
    max-width: 650px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.form-container>p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: var(--glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 9999px; /* Pill shape */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid var(--primary-dark);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    color: var(--white) !important;
}

.btn-secondary {
    background: var(--white);
    color: var(--text-main);
    border: 1px solid var(--glass-border-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Wow Hero */
.hero-wow {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 5% 4rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}
.hero-wow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.2);
    color: var(--primary);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out backwards;
}
.hero-wow h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: var(--text-main);
    animation: fadeInUp 1s ease-out backwards;
}
.hero-wow h1 span.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #f43f5e 50%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.1em; /* Sabit yükseklik kesilme engelleme */
}

/* Stylish Text Slider */
.text-slider-wrapper {
    display: inline-flex;
    height: 1.1em;
    overflow: hidden;
    vertical-align: bottom;
}
.text-slider {
    display: flex;
    flex-direction: column;
    text-align: center;
    animation: textSlide 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.text-slider .gradient-text {
    height: 1.1em;
    line-height: 1.1em;
    display: block;
}

@keyframes textSlide {
    0%, 25% { transform: translateY(0); }
    33.33%, 58.33% { transform: translateY(-1.1em); }
    66.66%, 91.66% { transform: translateY(-2.2em); }
    100% { transform: translateY(-3.3em); }
}
.hero-wow p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeInUp 1.2s ease-out backwards;
}
.hero-wow .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease-out backwards;
}

/* 3D Holographic Mockup */
.hero-dashboard-mockup {
    margin: 4rem auto 0;
    max-width: 100vw;
    padding: 0 5%;
    perspective: 1200px;
    animation: fadeInUp 1.6s ease-out backwards;
}
.floating-mockup {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.1), 0 0 100px rgba(225, 29, 72, 0.05);
    transform: rotateX(15deg) translateZ(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    border: 1px solid var(--glass-border);
}
.hero-dashboard-mockup:hover .floating-mockup {
    transform: rotateX(0deg) translateY(-10px) translateZ(50px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Ticker Stats */
.stats-ticker {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border-dark);
    border-bottom: 1px solid var(--glass-border-dark);
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    margin-top: -2rem; /* Pull up slightly over mockup blur */
    z-index: 10;
    position: relative;
}
.stat-item {
    text-align: center;
    animation: fadeInUp 1.8s ease-out backwards;
}
.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}
.bento-span-2 { grid-column: span 2; }
.bento-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-dark);
    box-shadow: inset 0 0 0 1px var(--glass-border), 0 10px 30px -10px rgba(0,0,0,0.05);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bento-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: inset 0 0 0 1px var(--glass-border), 0 20px 40px -10px rgba(0,0,0,0.1);
}
.bento-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: rgba(225, 29, 72, 0.05);
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
}
.bento-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.bento-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-login {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* Dashboard specifics */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: var(--bg-dark);
}

.sidebar {
    width: 260px;
    background: var(--bg-surface);
    border-right: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sidebar a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--text-muted);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar a:hover,
.sidebar a.active {
    background: rgba(142, 21, 41, 0.05);
    color: var(--primary);
}

.main-content {
    flex: 1;
    padding: 2.5rem;
    height: 100vh;
    overflow-y: auto;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    background: #f1f5f9;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

tr:hover td {
    background: #f8fafc;
}

td {
    color: var(--text-main);
}

/* Footer */
footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

#iletisim {
    margin-left: auto;
}

.navbar .brand img {
    height: 40px;
}

.mobile-menu-btn {
    display: none;
    position: absolute;
    right: 5%;
}

.footer-brand img {
    max-height: 60px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile logic */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
    }

    /* Could add hamburger here later */
    .dashboard-layout {
        flex-direction: column;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        padding: 2rem 5%;
    }
    .bento-span-2 { grid-column: span 1; }
    .bento-card {
        padding: 1.5rem;
    }
    .info-section {
        padding: 3rem 5%;
    }
    .bento-title {
        font-size: 1.4rem;
    }
    .hero-wow h1 {
        font-size: 3rem;
    }
    .stats-ticker {
        gap: 2rem;
    }
    .stat-num {
        font-size: 2.5rem;
    }

    .sidebar {
        width: 100%;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
    }

    .sidebar a {
        margin-bottom: 0;
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }

    .sidebar h2 {
        margin-bottom: 0;
        align-self: center;
        margin-right: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    #iletisim {
        margin-left: 0;
    }
}

/* --- Atak Sinav Merkezi Conversion CSS Updates --- */

/* Sticky Navbar CTAs */
.navbar-cta-group {
    display: flex;
    gap: 10px;
}
.navbar-cta-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white) !important;
}

/* Horizontal Swipeable Packages Mobile */
.swipeable-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.swipeable-item {
    scroll-snap-align: start;
    flex: 0 0 100%;
    max-width: 350px;
}
@media (min-width: 768px) {
    .swipeable-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        overflow-x: visible;
    }
    .swipeable-item {
        max-width: none;
    }
}

/* Neden Atak 4-Card Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 2px;
    background: var(--glass-border);
}
.timeline-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 2.5rem;
}
.timeline-step:last-child {
    margin-bottom: 0;
}
.timeline-icon {
    position: absolute;
    left: 31px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(142,21,41,0.2);
}
.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Veli Tracking */
.transparent-tracking-wrap {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.tracking-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.tracking-visual img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.tracking-details {
    flex: 1;
    min-width: 300px;
}
.tracking-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.tracking-feature i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 5px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.testimonial-author {
    font-weight: 700;
    color: var(--text-main);
}
.testimonial-role {
    font-size: 0.9rem;
    color: var(--primary-light);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    color: #FFF;
}

/* --- New UI Upgrades --- */

/* Features Grid Icons Hover & Background */
.features-grid .info-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.features-grid .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 77, 53, 0.1);
    border-color: var(--primary-light);
}
.features-grid .info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 77, 53, 0.1) 0%, rgba(142, 21, 41, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s;
}
.features-grid .info-card:hover .info-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

/* Package Label/Badge */
.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff6b6b 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(142, 21, 41, 0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.package-highlight {
    border: 2px solid var(--secondary) !important;
    position: relative;
    box-shadow: 0 10px 40px rgba(142, 21, 41, 0.1) !important;
}

/* Timeline Glow Line */
.timeline::before {
    background: linear-gradient(to bottom, var(--primary-light), var(--secondary), transparent) !important;
    width: 3px !important;
    left: 49px !important;
}
.timeline-icon {
    border-width: 3px !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 5px rgba(34, 77, 53, 0.1), 0 4px 15px rgba(0,0,0,0.1) !important;
    transition: all 0.3s;
}
.timeline-step:hover .timeline-icon {
    box-shadow: 0 0 0 5px rgba(142, 21, 41, 0.2), 0 4px 15px rgba(0,0,0,0.1) !important;
    background: var(--secondary) !important;
    color: white !important;
    transform: scale(1.1);
}

/* Testimonial Quote & Avatar */
.testimonial-card {
    position: relative;
    padding-top: 3rem;
    transition: transform 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 3rem;
    color: rgba(34, 77, 53, 0.1);
    z-index: 0;
}
.testimonial-card p {
    position: relative;
    z-index: 1;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Rep Teaser Banner */
.rep-banner {
    background: linear-gradient(135deg, #0f172a 0%, var(--primary) 100%);
    color: white;
    padding: 5rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.rep-banner::before {
    content: '\f2b5';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -50px;
    font-size: 15rem;
    color: rgba(255,255,255,0.03);
    transform: rotate(-15deg);
}
.rep-banner p {
    color: rgba(255,255,255,0.8) !important;
}
.rep-banner-btn {
    background: var(--white) !important;
    color: var(--primary) !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}
.rep-banner-btn:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
}