/* Orkoit.com - Custom CSS */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #dc2626;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    padding-top: 76px; /* Account for fixed navbar */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.display-4, .display-5, .display-6 {
    font-weight: 700;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" fill-opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat bottom;
    background-size: cover;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

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

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

/* Cards */
.service-card, .detailed-service-card, .testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover, .detailed-service-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Statistics */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.counter {
    font-family: 'Georgia', serif;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card i {
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

/* Testimonials */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

/* CTA Sections */
.cta-section, .final-cta {
    position: relative;
    overflow: hidden;
}

.cta-section::before, .final-cta::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 100" fill="white" fill-opacity="0.1"><polygon points="0,0 1000,100 0,100"/></svg>') no-repeat top;
    background-size: cover;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
}

.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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    pointer-events: none;
}

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

.footer h4, .footer h5, .footer h6 {
    color: #ffffff !important;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff !important;
}

.footer-links li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-links li a {
    padding: 0.25rem 0;
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.9;
    color: #ffffff !important;
    text-decoration: none;
}

.footer-links li a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-color) !important;
}

.contact-info .d-flex {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info .d-flex:hover {
    transform: translateX(2px);
}

.contact-info i {
    font-size: 1.2rem;
    width: 24px;
    color: var(--primary-color) !important;
}

.contact-info p, .contact-info a {
    color: #ffffff !important;
    opacity: 0.9;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    transition: all 0.3s ease;
    opacity: 0.9;
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

.trust-badges {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin: 2rem 0;
}

.badge-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 1.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-item i {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 2rem;
}

.badge-item:hover i {
    transform: scale(1.2);
}

.badge-item .small {
    color: #ffffff !important;
    opacity: 0.9;
    font-weight: 500;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    transition: all 0.3s ease;
    opacity: 0.9;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

/* Newsletter Section */
.footer .input-group .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.footer .input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.footer .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer .input-group .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Emergency Contact */
.emergency-contact .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: 2px solid #dc3545;
    color: #ffffff !important;
}

.emergency-contact .btn:hover {
    background: #dc3545;
    color: #ffffff !important;
}

/* Footer Bottom */
.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer .copyright {
    color: #ffffff !important;
    opacity: 0.9;
}

.footer .copyright small {
    opacity: 0.7;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer-brand,
    .contact-info {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-info .d-flex {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .trust-badges {
        padding: 1rem;
    }
    
    .badge-item {
        margin-bottom: 1rem;
    }
    
    .footer-legal,
    .emergency-contact {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer .input-group {
        margin: 0 auto;
        max-width: 300px;
    }
}

/* Additional Button Enhancements */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    border: none;
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, var(--bs-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
}

.btn-success:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Animation for Footer Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer .row > div {
    animation: fadeInUp 0.6s ease forwards;
}

.footer .row:nth-child(2) > div {
    animation-delay: 0.2s;
}

.footer .row:nth-child(3) > div {
    animation-delay: 0.4s;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

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

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

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

/* Loading Animations */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Shadows */
.shadow-custom {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-custom-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    position: relative;
}

/* Contact Info Styling */
.contact-info a {
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color) !important;
}

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

/* Form Styling (for future forms) */
.form-control {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Custom Badge */
.badge-custom {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

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

/* Custom Borders */
.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .navbar, .whatsapp-float, .btn {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
} 