/* ===================================
   SequrSign - Complete Main CSS
   BravApp Template Enhanced Version
   =================================== */

/* CSS Variables */
:root {
    /* BravApp Color Scheme */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #fce38a 0%, #f38181 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    
    /* SequrSign Brand Colors */
    --brand-primary: #2c5aa0;
    --brand-secondary: #1e3d6f;
    --brand-accent: #28a745;
    --brand-warning: #ff6b35;
    
    /* BravApp Typography */
    --primary-font: 'Nunito', sans-serif;
    --secondary-font: 'Open Sans', sans-serif;
    
    /* BravApp Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.2);
    
    /* BravApp Spacing */
    --section-padding: 120px;
    --card-padding: 50px;
    --border-radius: 25px;
}

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

body {
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 1.7;
    color: #6c757d;
    background: #ffffff;
    overflow-x: hidden;
}

/* BravApp Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

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

.text-center { text-align: center; }
.text-white { color: white !important; }

/* ===================================
   SIGNATURE LOADING ANIMATION
   =================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
    position: relative;
    max-width: 500px;
    padding: 40px;
}

.signature-container {
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
}

.signature-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-svg {
    filter: drop-shadow(0 4px 8px rgba(44, 90, 160, 0.2));
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

#letter-s, #letter-e, #letter-q, #letter-u, #letter-r {
    stroke-dasharray: inherit;
    stroke-dashoffset: inherit;
}

#flourish {
    stroke-width: 2;
    opacity: 0.8;
}

#pen-tip {
    filter: drop-shadow(0 0 4px rgba(30, 61, 111, 0.6));
}

.loading-text {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 20px;
    font-style: italic;
    animation: fadeInOut 2s ease-in-out infinite 3s;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-primary) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 600;
    font-size: 16px;
    margin: 0 20px;
    padding: 12px 0 !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

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

.navbar-nav .nav-link:hover {
    color: var(--brand-primary) !important;
    transform: translateY(-3px);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.25);
}

.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    margin-top: 25px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

@media (max-width: 991px) {
    .navbar-collapse {
        animation: slideDown 0.4s ease-out;
    }
}

/* ===================================
   BUTTON SYSTEM
   =================================== */

.btn {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--brand-primary);
    border: 3px solid var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 3px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-lg {
    padding: 22px 45px;
    font-size: 16px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: var(--primary-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="100" cy="150" r="120" fill="url(%23grad1)" /><circle cx="850" cy="300" r="150" fill="url(%23grad1)" /><circle cx="300" cy="750" r="180" fill="url(%23grad1)" /><circle cx="750" cy="850" r="130" fill="url(%23grad1)" /><circle cx="500" cy="400" r="100" fill="url(%23grad1)" /></svg>');
    opacity: 0.8;
    animation: float 25s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    animation: shimmer 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease-out;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 50px;
    animation: fadeInUp 1.2s ease-out 0.3s both;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease-out 0.6s both;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 3;
    animation: fadeInRight 1.2s ease-out 0.8s both;
    text-align: center;
}

.hero-graphic {
    font-size: 25rem;
    opacity: 0.2;
    color: white;
    text-shadow: 0 0 80px rgba(255,255,255,0.4);
    animation: pulse 4s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

/* ===================================
   CARD SYSTEM
   =================================== */

.card-modern {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card-modern:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-modern:hover::before {
    transform: scaleX(1);
}

/* ===================================
   TRUST SIGNALS SECTION
   =================================== */

.trust-signals {
    background: white;
    padding: 100px 0;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.trust-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px 35px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trust-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.trust-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover::after {
    transform: scale(1);
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.trust-label {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="900" cy="100" r="100" fill="rgba(102, 126, 234, 0.03)" /><circle cx="100" cy="500" r="150" fill="rgba(118, 75, 162, 0.02)" /><circle cx="800" cy="800" r="120" fill="rgba(79, 172, 254, 0.03)" /></svg>');
    animation: float 30s ease-in-out infinite reverse;
}

.section-title {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.feature-card {
    background: white;
    padding: 60px 45px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.04) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: var(--shadow-xl);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* ===================================
   INDUSTRY SOLUTIONS SECTION
   =================================== */

.industry-solutions {
    padding: var(--section-padding) 0;
    background: white;
    position: relative;
}

.solution-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 45px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

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

.solution-card:hover::after {
    width: 300px;
    height: 300px;
}

.solution-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: white;
}

.solution-card:hover h3,
.solution-card:hover p {
    color: white;
    position: relative;
    z-index: 3;
}

.solution-card:hover .solution-icon {
    color: white !important;
    position: relative;
    z-index: 3;
    transform: scale(1.2) rotateY(360deg);
}

.solution-icon {
    font-size: 4.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    transition: all 0.6s ease;
    display: block;
}

.solution-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    position: relative;
    z-index: 2;
}

.solution-card p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: var(--primary-gradient);
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="200" fill="rgba(255,255,255,0.08)" /><circle cx="800" cy="500" r="150" fill="rgba(255,255,255,0.05)" /><circle cx="500" cy="800" r="250" fill="rgba(255,255,255,0.06)" /></svg>');
    animation: float 20s ease-in-out infinite reverse;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    animation: shimmer 10s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="80" fill="rgba(79, 172, 254, 0.03)" /><circle cx="900" cy="300" r="100" fill="rgba(102, 126, 234, 0.02)" /></svg>');
    opacity: 0.5;
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-section h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
    padding: 5px 0;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* ===================================
   SCROLL INDICATOR
   =================================== */

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) rotate(1deg); 
    }
    50% { 
        transform: translateY(0px) rotate(0deg); 
    }
    75% { 
        transform: translateY(15px) rotate(-1deg); 
    }
}

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

@keyframes shimmer {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}

/* Ripple animation for buttons */
@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(2);
        opacity: 0;
    }
}
/* Simple Loading Animation - Add this to your main.css */

/* Loading Animation */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}
/*for solutions/index.html*/
/* ===================================
   ADDITIONAL STYLES FOR MAIN.CSS
   Add these to your existing main.css file
   =================================== */

/* Page-specific body styles */
.page-content {
    padding-top: 100px;
}

/* Page Header Styles (for Features, Solutions, etc.) */
.page-header {
    background: var(--primary-gradient);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
/*    margin-top: -100px; */
    margin-top: 100px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.1)" /><circle cx="800" cy="400" r="120" fill="rgba(255,255,255,0.08)" /></svg>');
    animation: float 20s ease-in-out infinite;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Solutions Page Styles */
.solutions-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: white;
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.solution-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
    text-decoration: none;
    color: inherit;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.solution-card:hover::before {
    transform: scale(1);
}

.solution-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: var(--shadow-xl);
}

.solution-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.solution-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.solution-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.solution-features li {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

.solution-features .check {
    color: var(--brand-accent);
    margin-right: 10px;
    font-size: 14px;
}

.solution-cta {
    background: var(--brand-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.solution-card:hover .solution-cta {
    background: white;
    color: var(--brand-primary);
    transform: translateY(-3px);
}

/* Features Page Styles */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.feature-list li {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

.feature-list .check {
    color: var(--brand-accent);
    margin-right: 10px;
    font-size: 14px;
}

/* Security Section */
.security-section {
    padding: 120px 0;
    background: white;
}

.security-grid {
    margin-top: 60px;
}

.security-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

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

.security-icon {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.security-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Why Choose / Benefits Section */
.why-choose-section {
    padding: 120px 0;
    background: white;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.benefit-icon {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Comparison Section (Features page) */
.comparison-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 50px;
}

.comparison-table table {
    width: 100%;
    margin: 0;
}

.comparison-table th {
    background: var(--primary-gradient);
    color: white;
    padding: 25px 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f3f4;
    font-weight: 600;
}

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

.comparison-table .highlight {
    background: rgba(102, 126, 234, 0.05);
}

.check-mark {
    color: var(--brand-accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.x-mark {
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Header Stats (for pages with statistics) */
.header-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design for Page-specific Elements */
@media (max-width: 1200px) {
    .page-header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.3rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .solution-card,
    .feature-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .solution-icon,
    .feature-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

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

    .header-stats {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .solution-card,
    .feature-card,
    .security-card,
    .benefit-card {
        padding: 30px 20px;
    }
}
.page-header {
    background: var(--primary-gradient);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
/* Pricing */
/* ===================================
   PRICING PAGE STYLES - Add to main.css
   =================================== */

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 60px 45px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--brand-warning);
    transform: scale(1.05);
    z-index: 3;
}

.pricing-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.plan-price {
    font-size: 4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 2rem;
    vertical-align: top;
    color: var(--brand-primary);
}

.plan-billing {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.plan-features li {
    padding: 15px 0;
    color: #2c3e50;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 16px;
    font-weight: 500;
}

.plan-features .check {
    color: var(--brand-accent);
    margin-right: 15px;
    font-size: 18px;
}

.plan-features .times {
    color: #dc3545;
    margin-right: 15px;
    font-size: 18px;
}

.plan-button {
    width: 100%;
    padding: 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    margin-top: 30px;
}

/* Calculator Section */
.savings-calculator {
    background: white;
    padding: 120px 0;
}

.calculator-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.form-control {
    border-radius: 15px;
    border: 3px solid #e9ecef;
    padding: 20px 25px;
    font-size: 18px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.form-select {
    border-radius: 15px;
    border: 3px solid #e9ecef;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
}

.savings-result {
    background: var(--success-gradient);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
}

.savings-amount {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    background: var(--primary-gradient);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    transform: translateY(-2px);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    background: var(--success-gradient);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="300" cy="300" r="100" fill="rgba(255,255,255,0.1)" /><circle cx="700" cy="500" r="150" fill="rgba(255,255,255,0.05)" /></svg>');
    animation: float 25s ease-in-out infinite;
}

.guarantee-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}

.guarantee-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.guarantee-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.guarantee-section .cta-buttons {
    position: relative;
    z-index: 2;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

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

    .plan-price {
        font-size: 3rem;
    }

    .calculator-card {
        padding: 40px;
    }

    .savings-amount {
        font-size: 3rem;
    }

    .guarantee-section h2 {
        font-size: 2.5rem;
    }

    .guarantee-icon {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 30px 20px;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .plan-price .currency {
        font-size: 1.5rem;
    }

    .calculator-card {
        padding: 30px 20px;
    }

    .savings-amount {
        font-size: 2.5rem;
    }

    .form-control,
    .form-select {
        padding: 15px 20px;
        font-size: 16px;
    }
}
#Contact
/* ===================================
   CONTACT PAGE STYLES - Add to main.css
   =================================== */

/* Contact Methods */
.contact-method {
    position: relative;
}

.contact-cta {
    width: 100%;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.contact-method:hover .contact-cta {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: white;
}

.contact-form-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 15px;
    border: 3px solid #e9ecef;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-check {
    margin-top: 20px;
}

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

.form-check-label {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Information Cards */
.contact-info-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.contact-info-card h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-info-card p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.contact-info-card strong {
    color: #2c3e50;
    font-weight: 700;
}

/* FAQ Section Specific to Contact */
.faq-section {
    padding: 120px 0;
    background: white;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    background: var(--primary-gradient);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.7;
    font-size: 16px;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 40px 30px;
    }

    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-submit {
        padding: 15px 30px;
        font-size: 14px;
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-info-card {
        padding: 25px 15px;
    }

    .contact-info-card h4 {
        font-size: 1.2rem;
    }

    .contact-info-card p {
        font-size: 14px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 16px;
    }

    .faq-answer.active {
        padding: 20px 25px;
    }

    .contact-cta {
        padding: 12px 25px;
        font-size: 12px;
    }

    .header-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
/* Contact */
/* ===================================
   CONTACT PAGE STYLES - Add to main.css
   =================================== */

/* Contact Methods Section */
.contact-methods {
    padding: 100px 0;
    background: white;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.contact-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover::after {
    transform: scale(1);
}

.contact-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: var(--shadow-xl);
}

.contact-card h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.contact-info {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.response-time {
    background: var(--success-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: /* ===================================
   CONTACT PAGE STYLES - Add to main.css
   =================================== */

/* Contact Methods */
.contact-method {
    position: relative;
}

.contact-cta {
    width: 100%;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.contact-method:hover .contact-cta {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: white;
}

.contact-form-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 15px;
    border: 3px solid #e9ecef;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-check {
    margin-top: 20px;
}

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

.form-check-label {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Information Cards */
.contact-info-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.contact-info-card h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-info-card p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.contact-info-card strong {
    color: #2c3e50;
    font-weight: 700;
}

/* FAQ Section Specific to Contact */
.faq-section {
    padding: 120px 0;
    background: white;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    background: var(--primary-gradient);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.7;
    font-size: 16px;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 40px 30px;
    }

    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-submit {
        padding: 15px 30px;
        font-size: 14px;
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-info-card {
        padding: 25px 15px;
    }

    .contact-info-card h4 {
        font-size: 1.2rem;
    }

    .contact-info-card p {
        font-size: 14px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 16px;
    }

    .faq-answer.active {
        padding: 20px 25px;
    }

    .contact-cta {
        padding: 12px 25px;
        font-size: 12px;
    }

    .header-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
/* Fix navbar masking for resources page */
.page-header {
    padding-top: 200px !important;
}
