/* ==============================================
   Rick Jefferson Solutions - Premium Credit Repair Website
   Navy Blue (#003D5C) & Teal (#00A99D) Brand Colors
   Glassmorphism Design with Premium Typography
   ============================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Brand Colors */
    --navy-blue: #003D5C;
    --navy-light: #004A73;
    --navy-dark: #002A3A;
    --teal: #00A99D;
    --teal-light: #00C4B4;
    --teal-dark: #008C82;
    --teal-glow: rgba(0, 169, 157, 0.3);
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #6C757D;
    --text-dark: #212529;
    --text-light: rgba(255, 255, 255, 0.9);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 61, 92, 0.37);
    
    /* Premium Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --font-heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 61, 92, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 61, 92, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 61, 92, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 61, 92, 0.24);
    --shadow-glow: 0 0 40px var(--teal-glow);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    letter-spacing: -0.01em;
}

/* ========== PREMIUM TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--teal);
    letter-spacing: -0.015em;
    word-spacing: 0.05em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 { 
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

h4 { 
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h5 { 
    font-size: 1.125rem;
    font-weight: 600;
}

h6 { 
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-dark);
    word-spacing: 0.08em;
    letter-spacing: 0.015em;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--dark-gray);
    word-spacing: 0.1em;
    letter-spacing: 0.02em;
}

strong {
    font-weight: 700;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

a:hover {
    color: var(--teal-dark);
}

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

ul, ol {
    line-height: 1.8;
    word-spacing: 0.05em;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* ========== GLASSMORPHISM UTILITIES ========== */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

/* ========== CONTAINER & LAYOUT ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(0, 61, 92, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-fast);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.btn-nav {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 169, 157, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 169, 157, 0.4);
}

.btn-nav-alt {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--teal) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.btn-nav-alt:hover {
    background: var(--teal) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 169, 157, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ========== PREMIUM BUTTONS ========== */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large,
.btn-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    font-size: 1.0625rem;
    letter-spacing: 0.025em;
    word-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.btn-primary,
.btn-primary-large {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 169, 157, 0.3);
}

.btn-primary::before,
.btn-primary-large::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 var(--transition-slow);
}

.btn-primary:hover::before,
.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 169, 157, 0.4), var(--shadow-glow);
}

.btn-secondary,
.btn-secondary-large {
    background: rgba(255, 255, 255, 0.95);
    color: var(--teal);
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover,
.btn-secondary-large:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-tertiary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 50%, var(--teal-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 169, 157, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    color: var(--teal-light);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: var(--spacing-xl);
    color: var(--teal-light);
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--teal-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 196, 180, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--teal-light);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--teal-light);
    opacity: 0.95;
    font-weight: 400;
}

/* ========== GLASSMORPHISM CARDS ========== */
.pricing-card,
.service-card,
.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover,
.service-card:hover,
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 169, 157, 0.2);
    border-color: var(--teal);
}

.pricing-card.featured {
    border-width: 2px;
    border-color: var(--teal);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 169, 157, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 169, 157, 0.4);
    letter-spacing: 0.05em;
}

/* ========== PRICING ========== */
.pricing-section {
    padding: var(--spacing-xxl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.plan-header h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--teal-dark);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--teal);
    margin: var(--spacing-lg) 0;
    line-height: 1;
}

.price .currency {
    font-size: 2rem;
    vertical-align: super;
    font-weight: 700;
}

.price .period {
    font-size: 1.5rem;
    color: var(--dark-gray);
    font-weight: 400;
}

.plan-description {
    font-size: 1.0625rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
}

.plan-features li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.plan-note {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* ========== SERVICES ========== */
.services-hero,
.pricing-hero {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-hero-grid,
.pricing-hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-image-grid,
.pricing-hero-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.hero-img-1,
.hero-img-2,
.pricing-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.hero-img-1:hover,
.hero-img-2:hover,
.pricing-hero-img:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--teal);
}

.service-feature-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.service-feature-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 169, 157, 0.4);
    border-color: var(--teal);
}

/* ========== LEGAL/COMPLIANCE ========== */
.compliance-banner {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--text-dark);
    padding: var(--spacing-md);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.compliance-notice,
.alert-box {
    background: rgba(0, 169, 157, 0.05);
    border-left: 4px solid var(--teal);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.client-portal-notice {
    text-align: center;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: rgba(0, 169, 157, 0.05);
    border-radius: var(--radius-xl);
    border: 2px solid var(--teal);
    box-shadow: var(--shadow-md);
}

.client-portal-notice p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.portal-link {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.portal-link:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    color: var(--text-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
}

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

.footer-logo {
    height: 70px;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer h4 {
    color: var(--teal-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: var(--spacing-sm);
}

.footer a {
    color: var(--text-light);
    opacity: 0.85;
    transition: all var(--transition-fast);
    font-weight: 400;
}

.footer a:hover {
    opacity: 1;
    color: var(--teal-light);
    transform: translateX(4px);
}

.footer-disclaimers {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-list {
    list-style: none;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.disclaimer-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
    opacity: 0.85;
}

.disclaimer-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--teal-light);
}

.copyright {
    text-align: center;
    font-size: 0.9375rem;
    opacity: 0.75;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== PREMIUM TESTIMONIAL CARD EFFECTS ========== */
.testimonial-card-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 169, 157, 0.25) !important;
    border-color: rgba(0, 169, 157, 0.3) !important;
}

.testimonial-card-premium:hover .testimonial-text {
    color: var(--teal);
}

/* Swiper Custom Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--teal);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
}

.swiper-button-next,
.swiper-button-prev {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 61, 92, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--teal);
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 169, 157, 0.4);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: 900;
}

/* ========== PREMIUM ANIMATIONS ========== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0,169,157,0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0,169,157,0.5);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0,169,157,0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0,169,157,0.6);
    }
}

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

/* Premium Badge Animations */
.hero [data-aos="fade-down"] {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth Transitions for All Interactive Elements */
button, .btn, .btn-primary, .btn-secondary, .btn-tertiary, 
.btn-primary-large, .btn-secondary-large, .btn-nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover, .btn:hover, .btn-primary:hover, .btn-secondary:hover, 
.btn-tertiary:hover, .btn-primary-large:hover, .btn-secondary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,169,157,0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .service-layout,
    .form-layout,
    .pricing-guarantee,
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 61, 92, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ========== CONSULTATION FORM ========== */
.consultation-form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(0, 169, 157, 0.1);
}

.consultation-form-wrapper iframe {
    display: block;
}

/* ========== PREMIUM REVIEW CAROUSEL ========== */
.reviews-section {
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.review-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--teal);
    opacity: 0.3;
    transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
    color: var(--teal);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--teal);
    transform: scale(1.1);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: white;
}

/* Mobile Swiper Adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}