/* Chinmay Technosoft - Professional Modern Design */
/* Color Palette: Navy Blue & Tech Blue - Inspired by Logo (Central Sphere with Orbiting Rings) */
/* Represents: Connectivity, SaaS Hub, Multi-tenancy, Innovation */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Professional Color Scheme Matching Logo */
:root {
    /* Primary Colors - Deep Navy from Logo Text */
    --primary: #0D2137;          /* Deep Navy Blue - Authority & Trust */
    --primary-dark: #081526;
    --primary-light: #163152;

    /* Accent Colors - Tech Blue from Logo Sphere & Orbits */
    --accent: #2E8BC0;           /* Tech Blue - Innovation & Technology */
    --accent-dark: #2577A8;
    --accent-light: #4BA3D3;

    /* Secondary - Gradient Blues from Logo */
    --secondary: #1A4B6E;        /* Mid Navy */
    --tertiary: #5DADE2;         /* Light Tech Blue */

    /* Neutrals */
    --dark: #0A1929;
    --dark-light: #152238;
    --gray-900: #1F2937;
    --gray-800: #374151;
    --gray-700: #4B5563;
    --gray-600: #6B7280;
    --gray-500: #9CA3AF;
    --gray-400: #D1D5DB;
    --gray-300: #E5E7EB;
    --gray-200: #F3F4F6;
    --gray-100: #F9FAFB;
    --white: #FFFFFF;

    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Gradients - Inspired by Logo's Orbital Design */
    --gradient-primary: linear-gradient(135deg, #0D2137 0%, #1A4B6E 50%, #0D2137 100%);
    --gradient-accent: linear-gradient(135deg, #2E8BC0 0%, #5DADE2 100%);
    --gradient-hero: linear-gradient(135deg, #0A1929 0%, #0D2137 40%, #1A4B6E 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(46,139,192,0.03) 100%);
    --gradient-sphere: radial-gradient(circle at 30% 30%, #5DADE2 0%, #2E8BC0 50%, #1A4B6E 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --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);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px -10px rgba(13, 33, 55, 0.5);
    --shadow-accent: 0 10px 40px -10px rgba(46, 139, 192, 0.4);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.display-1 { font-size: 4.5rem; font-weight: 800; letter-spacing: -0.02em; }
.display-2 { font-size: 3.75rem; font-weight: 800; letter-spacing: -0.02em; }
.display-3 { font-size: 3rem; font-weight: 700; letter-spacing: -0.01em; }
.display-4 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.01em; }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.8;
}

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }

/* Text on dark backgrounds */
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.hero-section h1, .hero-section h2, .page-header h1, .page-header h2 {
    color: var(--white) !important;
}

.bg-primary .lead, .bg-dark .lead, .hero-section .lead, .page-header .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

.bg-primary p, .bg-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.text-white {
    color: var(--white) !important;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: var(--white) !important;
}

.text-white .lead, .text-white p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 0.5rem 0;
    background: var(--white) !important;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.35rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-200);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 85px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
    height: 65px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700) !important;
    padding: 0.6rem 1rem !important;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link i {
    font-size: 1rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
    color: var(--accent);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(46, 139, 192, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Dropdown Menus */
.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem;
    margin-top: 0.75rem;
    min-width: 240px;
    animation: fadeInUp 0.2s ease-out;
}

.dropdown-menu-animate {
    transform-origin: top center;
}

.dropdown-item {
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.dropdown-item i {
    font-size: 1.1rem;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(46, 139, 192, 0.1) 0%, rgba(93, 173, 226, 0.05) 100%);
    color: var(--primary);
    transform: translateX(4px);
}

/* Badge styles for dropdown */
.bg-accent-subtle {
    background-color: rgba(46, 139, 192, 0.15) !important;
}

.bg-success-subtle {
    background-color: rgba(16, 185, 129, 0.15) !important;
}

.text-accent {
    color: var(--accent) !important;
}

/* Navbar CTA Buttons */
.navbar-cta {
    display: flex;
    align-items: center;
}

.navbar .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
}

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

.navbar .btn-accent {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
}

.navbar .btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

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

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

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

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-number span {
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

/* Hero Image/Illustration */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    opacity: 0.1;
    transform: rotate(3deg);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 4s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card-icon.primary {
    background: rgba(13, 33, 55, 0.1);
    color: var(--primary);
}

.floating-card-icon.accent {
    background: rgba(46, 139, 192, 0.1);
    color: var(--accent);
}

.floating-card-icon.success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
}

.floating-card-text {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-800);
}

.floating-card-subtext {
    font-size: 0.75rem;
    color: var(--gray-500);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.section-lg {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 33, 55, 0.08);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Content Styling for descriptions, long text */
.description-content,
.content-section {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.description-content p,
.content-section p {
    margin-bottom: 1.25rem;
    text-align: left;
}

.description-content ul,
.description-content ol,
.content-section ul,
.content-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.description-content li,
.content-section li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.description-content strong,
.content-section strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Key highlights list styling */
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list li::before {
    content: '';
    display: none;
}

.highlights-list li i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

/* Background Variations */
.bg-light-gradient {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.bg-dark-section {
    background: var(--gradient-hero);
    color: var(--white);
}

.bg-dark-section .section-title,
.bg-dark-section h2,
.bg-dark-section h3 {
    color: var(--white);
}

.bg-dark-section .section-subtitle,
.bg-dark-section p {
    color: rgba(255,255,255,0.8);
}

/* ==================== CARDS ==================== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-body {
    padding: 1.75rem;
}

/* Product Cards */
.product-card {
    border: none;
    box-shadow: var(--shadow);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.product-card .product-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: var(--white);
    padding: 0.5rem;
    box-shadow: var(--shadow);
    position: absolute;
    top: 180px;
    left: 1.75rem;
    border: 3px solid var(--white);
}

.product-card .card-body {
    padding-top: 2.5rem;
}

.product-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.product-card .card-subtitle {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-card .card-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-card .card-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 1.25rem 1.75rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-icon.primary {
    background: rgba(13, 33, 55, 0.1);
    color: var(--primary);
}

.feature-icon.accent {
    background: rgba(46, 139, 192, 0.1);
    color: var(--accent);
}

.feature-card:hover .feature-icon.primary {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon.accent {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Team Card */
.team-card {
    padding: 2rem;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 4px solid var(--gray-200);
}

.team-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.team-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: var(--transition);
}

.team-social:hover {
    background: var(--accent);
    color: var(--white);
}

/* Testimonial Cards */
.testimonial-card {
    padding: 2rem;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--gray-200);
    line-height: 1;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--gray-200);
}

.testimonial-avatar-placeholder {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.testimonial-position {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Contact Page Styles */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    border: none;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--gray-200);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-lg);
    background: var(--gradient-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-info-content a {
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Map Container */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 2px solid var(--gray-200);
    position: relative;
    background: var(--white);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.375rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.pricing-card .plan-price {
    margin-bottom: 0.5rem;
}

.pricing-card .price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-card .price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-card .price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-card .plan-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.pricing-card .plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card .plan-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-card .plan-features li i {
    color: var(--success);
    margin-top: 0.25rem;
}

/* ==================== FORMS ==================== */
.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 33, 55, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    border: none;
}

/* Blog Cards */
.blog-card {
    border: none;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder i {
    font-size: 3rem;
    color: var(--gray-400);
}

.blog-category {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.blog-card .card-title a {
    transition: var(--transition);
}

.blog-card .card-title a:hover {
    color: var(--accent) !important;
}

.blog-card .card-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Sidebar Styles */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
    color: var(--gray-900);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

.sidebar-list li a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-list li a i {
    font-size: 0.65rem;
    margin-right: 0.5rem;
    color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.sidebar-list li a:hover,
.sidebar-list li a.active {
    background: rgba(46, 139, 192, 0.1);
    color: var(--primary);
}

.sidebar-list li a:hover i,
.sidebar-list li a.active i {
    opacity: 1;
}

.sidebar-cta {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.sidebar-cta-content {
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.sidebar-cta-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.sidebar-cta-content p {
    opacity: 0.85;
}

/* Info Card / Steps / Benefits */
.info-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.steps-list {
    margin-top: 1rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

.benefits-list {
    margin-top: 1rem;
}

.benefit-list-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.benefit-list-item:last-child {
    border-bottom: none;
}

.benefit-list-item i {
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.benefit-list-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-list-item p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Help Card */
.help-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.help-card p {
    color: var(--gray-600);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Empty State */
.empty-state {
    padding: 3rem;
    text-align: center;
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-500);
}

/* Product Card Styles */
.product-card-image {
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-placeholder i {
    font-size: 4rem;
    color: var(--accent);
}

.product-logo-img {
    max-height: 80px;
    object-fit: contain;
}

.product-price {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.product-price .price-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

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

.product-price .price-period {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--gray-300);
    padding-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

footer h5, footer h6 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

footer a:hover {
    color: var(--accent) !important;
    padding-left: 4px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.6rem;
}

footer ul li a {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

footer ul li a i {
    font-size: 0.65rem;
    margin-right: 0.5rem;
    color: var(--accent);
    opacity: 0;
    transition: var(--transition-fast);
}

footer ul li a:hover i {
    opacity: 1;
}

/* Footer Brand Section */
.footer-brand {
    display: inline-block;
}

.footer-logo {
    height: 70px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white) !important;
    transform: translateY(-3px);
    padding-left: 0;
}

/* Footer Contact */
.footer-contact .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0;
    padding: 0.5rem 0;
}

.footer-contact .footer-contact-item i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.15rem;
}

.footer-contact .footer-contact-item a,
.footer-contact .footer-contact-item span {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-contact .footer-contact-item a:hover {
    padding-left: 0;
}

/* Footer CTA */
.footer-cta .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.footer-cta .btn-accent {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
}

.footer-cta .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-legal span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-legal strong {
    color: var(--gray-400);
}

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

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* ==================== PAGE HEADERS ==================== */
.page-header {
    background: var(--gradient-hero);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-header .lead {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.page-header .breadcrumb {
    margin-bottom: 1rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ==================== COOKIE CONSENT ==================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.25rem 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    border-top: 3px solid var(--primary);
}

/* ==================== ALERTS ==================== */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(5, 150, 105, 0.1);
    border-left-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(220, 38, 38, 0.1);
    border-left-color: var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(217, 119, 6, 0.1);
    border-left-color: var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(8, 145, 178, 0.1);
    border-left-color: var(--info);
    color: var(--info);
}

/* ==================== LEGAL PAGES ==================== */
.content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.content ul, .content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

/* ==================== BLOG ==================== */
.blog-card {
    border: none;
    box-shadow: var(--shadow);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-card .card-title a:hover {
    color: var(--primary);
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ==================== UTILITIES ==================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-accent {
    border-color: var(--accent) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2.25rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .floating-card {
        display: none;
    }

    .navbar-nav {
        padding: 1rem 0;
        gap: 0.5rem;
    }

    .navbar .d-flex {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    footer {
        padding-top: 3rem;
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==================== PRINT ==================== */
@media print {
    .navbar, footer, .cookie-consent, .btn, .floating-card {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero-section, .page-header, .cta-section, .bg-dark-section {
        background: none !important;
        color: #000 !important;
        padding: 2rem 0 !important;
    }

    .hero-title, .page-header h1, h1, h2, h3 {
        color: #000 !important;
    }
}

/* ==================== OTP VERIFICATION WIDGET ==================== */
.otp-widget {
    margin-top: 0.5rem;
}

.otp-send-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.otp-input-section {
    margin-top: 0.75rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.otp-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.otp-input-group {
    display: flex;
    gap: 0.5rem;
}

.otp-field {
    max-width: 180px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    padding: 0.5rem 0.75rem !important;
}

.otp-verify-btn {
    white-space: nowrap;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
}

.otp-status {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
}

.otp-status-success {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border-left: 3px solid #059669;
}

.otp-status-error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-left: 3px solid #dc2626;
}

.otp-status-info {
    background: rgba(46, 139, 192, 0.1);
    color: #2E8BC0;
    border-left: 3px solid #2E8BC0;
}

/* Verified email badge */
.email-verified {
    background-color: #f0fdf4 !important;
    border-color: #059669 !important;
}

.email-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.email-verified-badge i {
    font-size: 0.9rem;
}

/* Disabled submit button style */
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
