/* 
   UnlockPro - Main Stylesheet
   A sleek, professional design for iPhone unlocking service
*/

/* ===== Animations ===== */
@keyframes titleGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

[data-scroll] {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll].scroll-in {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="up"] {
    transform: translateY(30px);
}

[data-scroll="down"] {
    transform: translateY(-30px);
}

[data-scroll="left"] {
    transform: translateX(-30px);
}

[data-scroll="right"] {
    transform: translateX(30px);
}

/* ===== Base Styles ===== */
:root {
    --primary-color: #0A192F; /* Deep navy blue */
    --secondary-color: #1D2A35; /* Dark charcoal */
    --accent-color: #007BFF; /* Trustworthy blue */
    --success-color: #10b981; /* Green */
    --light-color: #F1F1F1; /* Light grey */
    --white: #FFFFFF; /* Pure white */
    --text-color: #1D2A35; /* Dark charcoal for text */
    --text-light: #4A5568; /* Medium grey for lighter text */
    --border-color: #E2E8F0; /* Light gray for borders */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --whatsapp-color: #25d366; /* WhatsApp green */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-medium {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: #28a745 !important; /* Green for Start Unlock Process */
    color: white;
    border-color: #28a745;
}

.btn-primary:hover {
    background-color: #218838 !important; /* Darker green on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #1e7e34;
}

.btn-accent {
    background-color: #007bff !important; /* Blue for IMEI Check */
    color: white;
    border-color: #007bff;
}

.btn-accent:hover {
    background-color: #0056b3 !important; /* Darker blue on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #007bff !important; /* Blue for other buttons */
    color: white !important;
    border-color: #007bff;
    box-shadow: var(--shadow-sm);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
}

/* WhatsApp button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
}

.btn-viber {
    background-color: #7360F2;
    color: white;
}

.btn-viber:hover {
    background-color: #665CAC;
}

.btn-whatsapp.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}

/* Payment Popup Styles */
.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.payment-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-popup {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    padding: 1.25rem;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.payment-overlay.active .payment-popup {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .payment-popup {
        padding: 1rem;
    }
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .payment-details {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .payment-popup {
        padding: 1.5rem;
    }
}

.payment-info {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    order: 2;
}

@media (min-width: 768px) {
    .payment-info {
        padding: 1.5rem;
        order: 0;
    }
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .info-item {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item.total {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .info-item.total {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 1.1rem;
    }
}

.info-item .value {
    color: var(--primary-color);
    word-break: break-word;
}

.payment-method {
    text-align: center;
    order: 1;
}

@media (min-width: 768px) {
    .payment-method {
        order: 0;
    }
}

.qr-container {
    background-color: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 0.75rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .qr-container {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

.qr-code {
    width: 160px;
    height: 160px;
    margin: 0 auto 0.75rem;
}

@media (min-width: 768px) {
    .qr-code {
        width: 180px;
        height: 180px;
        margin-bottom: 1rem;
    }
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.timer-container {
    text-align: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .timer-container {
        margin-bottom: 1rem;
    }
}

.timer-container p {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.timer {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .timer-container p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .timer {
        font-size: 1.5rem;
    }
}

.payment-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    line-height: 1.4;
    text-align: center;
}

@media (min-width: 768px) {
    .payment-note {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.success-icon, .expired-icon, .pending-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.success-icon {
    color: #4CAF50;
}

.expired-icon {
    color: #F44336;
}

.pending-icon {
    color: #FF9800;
}

.success-info {
    text-align: center;
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
    color: #4CAF50;
}

.success-actions, .expired-actions {
    text-align: center;
    margin-top: 2rem;
}

.support-actions {
    text-align: center;
    margin-top: 1.5rem;
}

/* ===== Header Styles ===== */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

header:hover {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.logo a i {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    margin-bottom: 0;
    gap: 2rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 6rem 2rem 2rem;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-links li {
        width: 100%;
        max-width: 300px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInDown 0.4s ease forwards;
    }
    
    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links li:nth-child(5) { animation-delay: 0.5s; }
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .nav-links a.active {
        background-color: var(--accent-color);
        color: white;
    }
}

.nav-links a i {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links a i {
        color: var(--accent-color);
        font-size: 1.2rem;
        margin-right: 0.75rem;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover i {
        color: white;
        transform: scale(1.1);
    }
    
    .nav-links a.active i {
        color: white;
    }
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active i {
    color: var(--accent-color);
}

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

.nav-links a:hover i {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile menu active states */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    background-color: var(--primary-color);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(var(--accent-color-rgb), 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
}

.hero * {
    color: var(--white);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.trust-badge i {
    color: var(--success-color);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating i {
    color: #f59e0b; /* Yellow for stars */
}

/* Responsive styles for trust badge */
@media (max-width: 576px) {
    .trust-badge {
        font-size: 0.75rem; /* Smaller font size */
        padding: 0.35rem 0.75rem; /* Less padding */
        gap: 0.5rem; /* Smaller gap between elements */
    }
    
    .rating {
        gap: 0.15rem; /* Smaller gap between stars */
    }
    
    .rating i {
        font-size: 0.75rem; /* Smaller star icons */
    }
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(
        45deg,
        #ffffff,
        #10b981,
        #f59e0b,
        #ef4444,
        #8b5cf6,
        #00ff04
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGradient 8s ease infinite;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.success-badge, .time-badge {
    position: absolute;
    background-color: white;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.success-badge {
    top: 2rem;
    right: -1rem;
}

.time-badge {
    bottom: 2rem;
    left: -1rem;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.badge-content i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.time-badge .badge-content i {
    color: var(--accent-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.highlight {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.subtext {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== Stats Section ===== */
.stats {
    background-color: var(--primary-color);
    padding: 3rem 0;
    color: white;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats .stat-item h2,
.stats .stat-item p {
    color: white;
}

.stats .stat-item i {
    color: var(--accent-color);
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-item h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Staggered animations for stats icons */
.stat-item:nth-child(1) i { animation-delay: 0s; }
.stat-item:nth-child(2) i { animation-delay: 0.75s; }
.stat-item:nth-child(3) i { animation-delay: 1.5s; }
.stat-item:nth-child(4) i { animation-delay: 2.25s; }

/* ===== Services Overview ===== */
.services-overview {
    padding: 5rem 0;
    background-color: #282c34;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(var(--accent-color-rgb), 0.03),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-card .btn {
    margin-top: auto;
}

/* ===== Unlock Form Section ===== */
.unlock-form {
    background-color: var(--primary-color);
    padding: 5rem 0;
    text-align: center;
}

.unlock-form h2 {
    margin-bottom: 1rem;
    color: white;
}

.unlock-form p {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.form-group input:hover,
.form-group select:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
    transform: translateY(-1px);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.form-submit button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.5);
}

.form-submit button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #28a745, #34d058, #28a745);
    border-radius: 0.5rem;
    z-index: -1;
    animation: glowingEffect 1.5s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-submit button:hover::before {
    opacity: 1;
}

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

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.form-security {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-security i {
    color: var(--success-color);
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 3rem;
    color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .step {
        padding: 1.5rem;
    }
}

.step {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.step h3, .step p {
    color: white;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    color: white;
}

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

.testimonial {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.testimonial:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .testimonial {
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .testimonial-content {
        display: none;
    }
    
    .testimonial-author {
        margin: 0;
        flex: 1;
    }
    
    .testimonial-rating {
        display: none;
    }
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #f59e0b; /* Star color */
}

.testimonial p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial Modal Styles */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.testimonial-modal.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-modal-content {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.testimonial-modal.active .testimonial-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.testimonial-modal-close:hover {
    color: var(--accent-color);
}

/* Mobile Styles for Connect With Us Section */
@media (max-width: 768px) {
    .connect-section {
        padding: 3rem 0;
    }

    .social-connect-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
        margin-top: 2rem;
    }

    .social-connect-item {
        padding: 1.5rem;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .social-connect-icon {
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .social-connect-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
        font-weight: 600;
    }

    .social-connect-item p {
        display: none;
    }

    .social-connect-item:active {
        transform: scale(0.95);
    }

    /* Specific row ordering */
    .social-connect-item.social-row-1 {
        order: 1;
    }

    .social-connect-item.social-row-2 {
        order: 2;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 480px) {
    .social-connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .social-connect-item {
        padding: 1.25rem;
        min-height: 120px;
    }

    .social-connect-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .social-connect-item h3 {
        font-size: 1rem;
    }

    .connect-section {
        padding: 2.5rem 0;
    }

    .connect-section h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .connect-section p {
        font-size: 0.9rem;
    }
}

/* Mobile Styles for Testimonials */
@media (max-width: 768px) {
    .testimonial {
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        background-color: white;
        margin-bottom: 1rem;
        cursor: pointer;
    }
    
    .testimonial p,
    .testimonial .testimonial-rating {
        display: none;
    }
    
    .testimonial-author {
        margin: 0;
        flex: 1;
    }

    .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .testimonial:active {
        transform: scale(0.98);
    }
}

@media (min-width: 769px) {
    .testimonial p,
    .testimonial .testimonial-rating {
        display: block !important;
    }
}

/* ===== Footer ===== */
footer {
    background-color: white;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo p {
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a,
.footer-services a {
    color: var(--text-light);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-color);
}

.support-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        padding: 2.5rem 0;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stats .stat-item {
        padding: 1.5rem;
        margin: 0;
        min-width: 0; /* Ensures proper grid behavior */
    }

    .stats .stat-item i {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .stats .stat-item h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .stats .stat-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
.nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nav-links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.nav-links a {
    color: white;
    font-size: 1.25rem;
    padding: 1rem;
    width: 80%;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.nav-links a.active {
    background-color: var(--accent-color);
    color: white;
}

.cta-button {
    display: none;
}

.hamburger {
    display: flex;
}    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }

    .steps {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .step {
        padding: 1.25rem;
    }

    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .step p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .stats .stat-item {
        padding: 1.25rem 1rem;
    }

    .stats .stat-item h2 {
        font-size: 1.5rem;
    }

    .stats .stat-item p {
        font-size: 0.85rem;
    }
    
    .success-badge, .time-badge {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin: 0.5rem auto;
        width: 80%;
        max-width: 250px;
        transform: none;
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .hero-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
} 

/* ===== Rating Summary Section ===== */
.rating-summary {
    background-color: #0A192F;
    padding: 4rem 0;
    color: white;
}

/* ===== Page Header ===== */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* ===== Services List ===== */
.services-list {
    padding: 5rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-content {
    padding: 1rem;
}

.service-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-description {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-features i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-guarantee i {
    color: var(--success-color);
}

/* ===== Process Section ===== */
.process-section {
    background-color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}

.process-section h2 {
    margin-bottom: 1rem;
}

.process-section > .container > p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive styles for services page */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
} 

/* ===== Rating Summary ===== */
.rating-summary {
    padding: 3rem 0;
}

.rating-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.rating-score {
    display: flex;
    align-items: baseline;
}

.rating-score .score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-score .total {
    font-size: 1.5rem;
    color: var(--text-light);
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.5rem;
}

.rating-count {
    margin-left: auto;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.rating-bars {
    margin-bottom: 2rem;
}

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

.bar-label {
    width: 60px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 4px;
}

.bar-percent {
    width: 40px;
    font-size: 0.875rem;
    text-align: right;
    color: var(--text-light);
}

.rating-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.rating-badge i {
    color: var(--success-color);
}

/* ===== Reviews Grid Section ===== */
.reviews-grid-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.reviews-grid-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-label {
    font-weight: 500;
}

.filter-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-btn:hover:not(.active) {
    background-color: var(--light-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-item {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.reviewer-info {
    flex: 1;
}

.reviewer-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: var(--accent-color);
}

.review-date, .review-country {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-country {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background-color: var(--light-color);
    border-radius: 1rem;
    font-weight: 500;
}

.review-service {
    display: flex;
    gap: 0.5rem;
}

.service-tag, .device-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 2rem;
    background-color: var(--light-color);
    color: var(--text-color);
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.review-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.helpful-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background-color: var(--light-color);
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.pagination-btn:hover:not(.active) {
    background-color: var(--light-color);
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    color: var(--text-light);
}

/* ===== Leave Review Section ===== */
.leave-review-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.leave-review-section h2 {
    margin-bottom: 1rem;
}

.leave-review-section > .container > p {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #d1d5db;
}

.rating-input i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input i:hover,
.rating-input i.active {
    color: #f59e0b;
}

/* Responsive styles for reviews page */
@media (max-width: 1024px) {
    .rating-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .rating-count {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
} 

/* ===== About Overview ===== */
.about-overview {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-content:hover .about-image img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-box {
    background-color: var(--light-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== Mission Section ===== */
.mission-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.mission-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    margin-bottom: 1.5rem;
}

.mission-text p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.mission-text h3 {
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.values-list i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.values-list h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.values-list p {
    margin-bottom: 0;
    font-size: 1rem;
}

.mission-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.mission-content:hover .mission-image img {
    transform: scale(1.05);
}

/* ===== Team Section ===== */
.team-section {
    padding: 5rem 0;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1rem;
}

.team-section > .container > p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.team-member {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
    text-align: left;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* ===== Why Choose Section ===== */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.why-choose-section h2 {
    margin-bottom: 1rem;
}

.why-choose-section > .container > p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.feature-item h3 {
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Responsive styles for about page */
@media (max-width: 1024px) {
    .about-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== Contact Section ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-form-container h2,
.contact-card h2 {
    margin-bottom: 1rem;
}

.contact-form-container p,
.contact-card > p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-form {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group label .required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--success-color);
}

.contact-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-info-list {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

.info-content a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-color);
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.support-card {
    background-color: var(--primary-color);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.support-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.support-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.support-card .support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===== Map Section ===== */
.map-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 1rem;
}

.map-section p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== Contact FAQ ===== */
.contact-faq {
    padding: 5rem 0;
}

/* Responsive styles for contact page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
} 

/* ===== Pricing Table ===== */
.pricing-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 0.5rem;
    overflow: hidden;
}

.pricing-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) {
    background-color: var(--light-color);
}

.pricing-table tr:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.pricing-table td:last-child {
    font-weight: 600;
    color: var(--primary-color);
} 

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Pulse animation for WhatsApp button */
.whatsapp-float:before {
    content: '';
    position: absolute;
    border: 1px solid #25D366;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
} 

/* Contact Form Success/Error States */
.form-note.success {
    color: #10b981;
    font-weight: 500;
}

.form-note.error {
    color: #ef4444;
    font-weight: 500;
} 

/* Form Success Message */
.form-success {
    background-color: #f0fdf4;
    border: 1px solid #10b981;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.success-icon {
    color: #10b981;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #10b981;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-color);
} 

/* Connect With Us Section */
.connect-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

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

.social-connect-item {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.social-connect-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-connect-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.social-connect-icon.facebook {
    background-color: #1877F2;
}

.social-connect-icon.whatsapp {
    background-color: #25D366;
}

.social-connect-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-connect-icon.tiktok {
    background-color: #000000;
}

.social-connect-icon.youtube {
    background-color: #FF0000;
}

.social-connect-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.social-connect-item p {
    font-size: 0.875rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .social-connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-connect-grid {
        grid-template-columns: 1fr;
    }
} 

/* Button Sizes */
.btn-medium {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 2rem auto;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    font-size: 1.75rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 1.5rem;
}

/* IMEI Check Styles */
.imei-check-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.imei-input-section {
    text-align: center;
}

.imei-input-section h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.imei-input-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.imei-input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.imei-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.imei-input-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.imei-powered-by {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.imei-site-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.imei-site-link:hover {
    color: var(--accent-color);
}

.imei-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.imei-results-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.imei-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.imei-result-card {
    background-color: var(--light-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.imei-result-card:hover {
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.result-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

.result-value.clean {
    color: #10b981;
}

.result-value.blocked {
    color: #ef4444;
}

.result-value.locked {
    color: #f59e0b;
}

.imei-required-docs {
    background-color: var(--light-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.imei-required-docs h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.required-docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.required-docs-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.required-docs-list li i {
    color: var(--accent-color);
}

.imei-next-steps {
    text-align: center;
}

.imei-next-steps h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.imei-next-steps p {
    margin-bottom: 1.5rem;
}

.imei-action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: #2563eb;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .imei-input-group {
        flex-direction: column;
    }
    
    .imei-action-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    /* Compact form styles for mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.625rem 1rem;
        font-size: 0.95rem;
        border-radius: 0.5rem;
    }
    
    .form-group small {
        margin-top: 0.25rem;
        font-size: 0.7rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .form-submit {
        margin-top: 0.5rem;
    }
} 

/* ===== IMEI Checker Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--primary-color);
    border-radius: 10px 10px 0 0;
}

.modal-header h2 {
    color: white;
    margin-bottom: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 1.5rem;
}

/* IMEI Checker Styles */
.imei-check-container {
    display: flex;
    flex-direction: column;
}

.imei-input-section {
    text-align: center;
    padding: 1rem;
}

.imei-input-section h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.imei-input-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.imei-input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.imei-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
}

.imei-input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.imei-powered-by {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.imei-site-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-weight: 500;
}

.imei-site-link:hover {
    color: var(--accent-color);
}

.imei-results-section {
    background-color: var(--light-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.imei-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.imei-results-header h3 {
    margin-bottom: 0;
}

.imei-result-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.imei-result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.device-model-card {
    margin-bottom: 1.5rem;
}

.result-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.result-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

.result-value.clean {
    color: var(--success-color);
}

.result-value.blocked,
.result-value.locked {
    color: #ef4444; /* Red */
}

.imei-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.imei-required-docs {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.imei-required-docs h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.required-docs-list {
    list-style: none;
    padding: 0;
}

.required-docs-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.required-docs-list li i {
    color: var(--accent-color);
}

.imei-next-steps {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.imei-next-steps h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.imei-next-steps p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.imei-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .imei-input-group {
        flex-direction: column;
    }
    
    .imei-result-grid {
        grid-template-columns: 1fr;
    }
    
    .imei-action-buttons {
        flex-direction: column;
    }
    
    .imei-action-buttons a {
        width: 100%;
        text-align: center;
    }
} 