/* PropertyLens Pro - Main CSS */

/* CSS Custom Properties - Color Palette */
:root {
    /* Primary Colors */
    --color-primary: #438fff;      /* Blue */
    --color-secondary: #00a63b;    /* Green */
    --color-accent: #ff900a;       /* Amber */
    --color-neutral: #494e5b;      /* Gray */
    --color-complement: #7f6de8;   /* Purple */
    
    /* Light Shades */
    --color-primary-light: #c5e2ff;
    --color-secondary-light: #c7f0de;
    --color-accent-light: #fff2ce;
    --color-neutral-light: #f9fafb;
    --color-complement-light: #f4f4f4;
    
    /* Dark Shades */
    --color-primary-dark: #457ed7;
    --color-secondary-dark: #13a854;
    --color-accent-dark: #ce511d;
    --color-neutral-dark: #314555;
    --color-complement-dark: #9d36f0;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 80px;
    --card-padding: 24px;
    --border-radius: 8px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Base Typography - Conservative Sizing */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-neutral-dark);
    overflow-x: hidden;
}

/* Headings - Conservative Sizes */
h1 {
    font-size: 2.73rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.12rem;
}

h3 {
    font-size: 1.66rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.74rem;
}

h4, h5 {
    font-size: 1.19rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.79rem;
}

/* Paragraph and Text */
p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

/* Navbar Brand - Conservative Size */
.navbar-brand {
    font-size: 1.42rem !important;
    font-weight: 600;
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-complement-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="8" fill="rgba(62, 137, 255, 0.10)"/><circle cx="80" cy="80" r="12" fill="rgba(28, 196, 126, 0.10)"/><circle cx="70" cy="30" r="6" fill="rgba(242, 155, 9, 0.10)"/></svg>') repeat;
    pointer-events: none;
}

/* Custom Components */

/* Process Numbers */
.process-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.60rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Quality Numbers */
.quality-number {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.40rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

/* Training Badges */
.training-badge {
    width: 70px;
    height: 70px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

/* Price Styling */
.price {
    font-size: 1.66rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 1rem;
}

/* Card Enhancements */
.card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 1.40s ease, box-shadow 0.49s ease;
}

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

/* Contact Info Styling */
.contact-info {
    background: var(--color-neutral-light);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
}

.contact-info p {
    margin-bottom: 0.83rem;
}

.contact-info i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* Breadcrumb */
.breadcrumb-section {
    padding-top: 100px;
    padding-bottom: 20px;
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* Form Enhancements */
.form-control {
    border: 1px solid var(--color-neutral-light);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    font-size: var(--font-size-base);
    transition: border-color 1.31s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(21, 128, 241, 0.25);
}

/* Button Enhancements */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
}

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

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

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

/* Footer Enhancements */
footer {
    background-color: var(--color-neutral-dark) !important;
}

footer h5, footer h6 {
    color: var(--color-primary-light);
    margin-bottom: 1rem;
}

footer p, footer small {
    color: var(--color-neutral-light);
    font-size: var(--font-size-small);
}

footer a {
    color: var(--color-neutral-light);
    text-decoration: none;
    transition: color 0.50s ease;
}

footer a:hover {
    color: var(--color-primary-light);
}

/* Icon Colors */
.text-primary i {
    color: var(--color-primary) !important;
}

.text-success i {
    color: var(--color-secondary) !important;
}

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

.text-info i {
    color: var(--color-complement) !important;
}

.text-danger i {
    color: #ef5726 !important;
}

/* Section Padding */
section {
    padding: var(--section-padding) 0;
}

/* Background Utilities */
.bg-light {
    background-color: var(--color-neutral-light) !important;
}

/* Accessibility - Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Loading States */
.loading-placeholder {
    background: linear-gradient(90deg, var(--color-neutral-light) 25%, var(--color-neutral-light) 50%, var(--color-neutral-light) 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Utility Classes */
.text-muted {
    color: var(--color-neutral) !important;
}

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

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

/* Custom Spacing */
.py-section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
}


.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::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;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
