/* CihanCivata - Main Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #6b7280;
    --accent-color: #f97316;
    --background-color: #ffffff;
    --text-color: #374151;
    --light-gray: #f3f4f6;
    --dark-gray: #1f2937;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-mono: 'Consolas', monospace;
    
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header Styles */
.header {
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .social-links a {
    transition: var(--transition);
    opacity: 0.7;
}

.top-bar .social-links a:hover {
    opacity: 1;
    color: var(--accent-color) !important;
}

/* Hide topbar on mobile devices */
@media (max-width: 767.98px) {
    .top-bar {
        display: none !important;
    }
}

/* Modern Mobile Menu Styles */
.mobile-menu-toggle {
    border: none;
    background: transparent;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Container */
.mobile-menu-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 210, 75, 0.5), transparent);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-brand-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 20px 0;
}

/* Mobile Navigation */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 210, 75, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #f8d24b;
    color: #f8d24b;
    transform: translateX(8px);
}

.mobile-nav-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.mobile-nav-link span {
    font-size: 16px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.mobile-contact-info {
    margin-bottom: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.mobile-contact-item i {
    font-size: 16px;
}

.mobile-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-social-link:hover {
    background: #f8d24b;
    color: #1e293b;
    transform: scale(1.1);
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.mobile-whatsapp-btn i {
    font-size: 18px;
}

/* Mobile Menu Animation */
#mobileMenu.collapsing {
    transition: height 0.35s ease;
}

#mobileMenu.show {
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-nav-link {
        padding: 14px 20px;
    }
    
    .mobile-nav-link i {
        font-size: 16px;
    }
    
    .mobile-nav-link span {
        font-size: 15px;
    }
    
    .mobile-menu-footer {
        padding: 20px;
    }
}

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

.mobile-nav-item {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: var(--accent-color);
}

.mobile-nav-link span {
    font-weight: 500;
    font-size: 16px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-contact-info {
    margin-bottom: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.mobile-contact-item i {
    font-size: 16px;
    width: 20px;
}

.mobile-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: white;
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.mobile-whatsapp-btn i {
    font-size: 20px;
}



/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-menu-container {
        width: 100%;
    }
}

/* Modern Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 210, 75, 0.5), transparent);
}

/* Footer decorative elements */
.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(248, 210, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Main Section */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Footer Brand Section */
.footer-brand-section {
    height: 100%;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.footer-brand-name {
    color: #f8d24b;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.footer-brand-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Stats */
.footer-stats {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f8d24b, #f59e0b, #f8d24b);
    border-radius: 16px 16px 0 0;
}

.footer-stat-item {
    text-align: center;
}

.footer-stat-number {
    color: #f8d24b;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.footer-stat-label {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Footer Social Links */
.footer-social-section {
    margin-top: 2rem;
}

.footer-section-title {
    color: #f8d24b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: #f8d24b;
    border-radius: 1px;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: #f8d24b;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 210, 75, 0.3);
}

.footer-social-link i {
    font-size: 1.2rem;
}

/* Footer Links Section */
.footer-links-section {
    height: 100%;
}

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

.footer-link-item {
    margin-bottom: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.footer-link:hover {
    color: #f8d24b;
    transform: translateX(5px);
    background: rgba(248, 210, 75, 0.1);
    padding-left: 0.75rem;
}

.footer-link i {
    color: #f8d24b;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-link span {
    font-weight: 500;
}

/* Footer Contact Section */
.footer-contact-section {
    height: 100%;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, rgba(248, 210, 75, 0.15), rgba(248, 210, 75, 0.05));
    color: #f8d24b;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(248, 210, 75, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 210, 75, 0.2), transparent);
    transition: left 0.5s;
}

.footer-contact-icon:hover::before {
    left: 100%;
}

.footer-contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 210, 75, 0.3);
}

.footer-contact-icon i {
    font-size: 1.1rem;
}

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

.footer-contact-label {
    color: #f8d24b;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.footer-contact-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.footer-contact-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #f8d24b;
}

/* Footer Newsletter Section */
.footer-newsletter-section {
    height: 100%;
}

.footer-newsletter-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.footer-cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.footer-cta-email {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.footer-cta-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.footer-cta-phone {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.footer-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: white;
}

/* Footer Certificates */
.footer-certificate-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-certificate-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-certificate-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f8d24b, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-certificate-badge:hover::before {
    opacity: 1;
}

.footer-certificate-badge:hover {
    background: linear-gradient(145deg, rgba(248, 210, 75, 0.1), rgba(248, 210, 75, 0.05));
    border-color: rgba(248, 210, 75, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 210, 75, 0.2);
}

.footer-certificate-badge i {
    color: #f8d24b;
    font-size: 1rem;
}

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

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #f8d24b;
}

.footer-bottom-separator {
    color: #64748b;
    font-size: 0.8rem;
}

.footer-powered-by {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-powered-link {
    color: #f8d24b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-powered-link:hover {
    color: #fbbf24;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8d24b 0%, #f59e0b 100%);
    color: #0f172a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(248, 210, 75, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(248, 210, 75, 0.5);
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-logo-container {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-contact-item {
        text-align: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-cta-btn {
        flex: 1;
        min-width: 120px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-certificate-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-certificate-badge {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Mobile specific improvements */
    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-stat-number {
        font-size: 1.5rem;
    }
    
    .footer-stat-label {
        font-size: 0.8rem;
    }
    
    .footer-contact-label {
        font-size: 0.85rem;
    }
    
    .footer-contact-text,
    .footer-contact-link {
        font-size: 0.85rem;
    }
    
    .footer-newsletter-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-separator {
        display: none;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-cta-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-certificate-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-certificate-badge {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    /* Extra small mobile improvements */
    .footer-brand-name {
        font-size: 1.3rem;
    }
    
    .footer-brand-tagline {
        font-size: 0.85rem;
    }
    
    .footer-stats {
        padding: 1rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-link i {
        font-size: 1.1rem;
    }
    
    .footer-contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-contact-icon i {
        font-size: 1rem;
    }
    
    .footer-link {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
    
    .footer-link i {
        font-size: 0.9rem;
        width: 18px;
    }
}

/* Enhanced mobile animations */
@media (max-width: 767.98px) {
    .footer-social-link:hover {
        transform: translateY(-2px) scale(1.05);
    }
    
    .footer-link:hover {
        transform: translateX(3px);
        padding-left: 0.5rem;
    }
    
    .footer-cta-btn:hover {
        transform: translateY(-1px);
    }
    
    .footer-certificate-badge:hover {
        background: rgba(248, 210, 75, 0.1);
        border-color: rgba(248, 210, 75, 0.3);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .footer-social-link:hover,
    .footer-link:hover,
    .footer-cta-btn:hover,
    .footer-certificate-badge:hover {
        transform: none;
    }
    
    .footer-social-link:active,
    .footer-link:active,
    .footer-cta-btn:active,
    .footer-certificate-badge:active {
        transform: scale(0.95);
    }
}

/* Main Navigation */
.navbar {
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-scrolled {
    background-color: rgba(30, 58, 138, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

/* Brand/Logo */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0.5rem 0;
}

.brand-text {
    line-height: 1.2;
}

.brand-name {
    font-size: 1.5rem;
    color: white;
}

.brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.2;
}

.logo-container {
    position: relative;
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    position: relative;
    border-radius: var(--border-radius);
    margin: 0 0.75rem;
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Mega Dropdown */
.mega-dropdown {
    width: 100%;
    max-width: 900px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-header {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.dropdown-featured {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-featured img {
    transition: var(--transition);
}

.dropdown-featured a:hover img {
    transform: scale(1.05);
}

/* Contact Buttons */
.navbar .btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.navbar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide-image {
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

/* Swiper Customization */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-swiper .swiper-pagination-bullet {
    background-color: white;
    opacity: 0.5;
    transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.stat-counter {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-counter:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

/* Features Section */
.features-section {
    background-color: var(--light-gray);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

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

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.product-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-description {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-specs li {
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Quality Section */
.quality-features {
    margin-bottom: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quality-image {
    position: relative;
}

.certificate-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.certificate-badge {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--box-shadow);
}

/* Delivery Section */
.delivery-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.delivery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

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

.delivery-time {
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h6 {
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Testimonials Swiper */
.testimonials-swiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.3;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

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

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

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

.btn-success:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

/* Contact Section */
.contact-info {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    margin-top: auto;
}

.footer h5, .footer h6 {
    color: var(--accent-color);
}

.footer a {
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-color) !important;
}

/* Footer Brand */
.footer-brand img {
    filter: brightness(0) invert(1);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Social Links */
.social-links a {
    transition: var(--transition);
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent-color) !important;
    background-color: var(--accent-color);
    color: white !important;
}

/* Certificates */
.certificate-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.certificate-badge i {
    margin-right: 0.5rem;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h6 {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-details p, .contact-details a {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Newsletter */
.footer-newsletter {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

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

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a {
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color) !important;
}

/* Utility Classes */
.bg-darker {
    background-color: rgba(0, 0, 0, 0.2);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

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

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

.rounded-custom { border-radius: var(--border-radius); }
.shadow-custom { box-shadow: var(--box-shadow); }

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .mega-dropdown {
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-slide {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-slide-image {
        max-height: 400px;
    }
    
    .mega-dropdown {
        max-width: 100%;
        left: 0;
        transform: none;
        padding: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0 0.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 0;
        margin: 0;
    }
    
    .top-bar .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar .text-end {
        text-align: center !important;
    }
    
    .footer-newsletter .row {
        text-align: center;
    }
    
    .footer-newsletter .input-group {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .hero-slide-image {
        max-height: 300px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Features Image */
.features-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(249, 115, 22, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.features-image:hover .features-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    color: white;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-btn {
    background-color: var(--success-color);
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #059669;
}

.phone-btn {
    background-color: var(--primary-color);
    animation: bounce 2s infinite 0.5s;
}

.phone-btn:hover {
    background-color: #1e40af;
}

.scroll-top-btn {
    background-color: var(--accent-color);
    display: none;
}

.scroll-top-btn:hover {
    background-color: #ea580c;
}

/* WhatsApp Float Button (Legacy) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

/* Category Cards */
.category-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card:hover .category-badge {
    transform: translateY(0);
}

.category-content {
    padding: 1.5rem;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.category-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-features {
    border-left: 3px solid var(--success-color);
    padding-left: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 0 8px 8px 0;
}

.category-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.category-features .feature-item:last-child {
    margin-bottom: 0;
}

.category-specs {
    background: rgba(30, 58, 138, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.spec-item {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.category-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Category Detail Modal */
.category-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-gallery {
    margin-top: 1.5rem;
}

.category-gallery h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.category-gallery img:hover {
    transform: scale(1.05);
}

.category-detail-features {
    background: rgba(16, 185, 129, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
}

.category-detail-features h6 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-detail-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.category-detail-features .feature-item:last-child {
    margin-bottom: 0;
}

.category-detail-specs {
    background: rgba(30, 58, 138, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.category-detail-specs h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-detail-specs ul {
    margin-bottom: 1rem;
}

.category-detail-specs li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.category-applications {
    margin-top: 1.5rem;
}

.category-applications h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.application-tags .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

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

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white !important;
}

/* Responsive Design for Categories */
@media (max-width: 768px) {
    .category-card {
        margin-bottom: 1.5rem;
    }

    .category-content {
        padding: 1rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .category-actions {
        flex-direction: column;
    }

    .category-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .category-detail-features,
    .category-detail-specs {
        padding: 1rem;
    }
} 

/* Navbar Gradient & Sticky */
.navbar-gradient {
  background: linear-gradient(135deg, #111827 0%, #0b1736 50%, #1e3a8a 100%) !important;
}

.navbar.navbar-gradient {
  padding: 0.9rem 0;
  transition: all 0.25s ease;
}

.navbar.navbar-gradient.navbar-scrolled {
  padding: 0.6rem 0;
  background: linear-gradient(135deg, #0b1020 0%, #0a132c 50%, #1e3a8a 100%) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Center menu */
.navbar .navbar-nav.mx-auto {
  align-items: center;
}

/* Header search wrapper */
.backdrop-blur { backdrop-filter: blur(12px); }
.header-search-wrapper .form-control::placeholder { color: rgba(255,255,255,0.85); }
.header-search-wrapper .form-control { color: #fff; }
.header-search-wrapper .input-group-text { color: rgba(255,255,255,0.9); }

/* Decorative shapes for hero */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.hero-decor.shape-1 { width: 260px; height: 260px; background: #2563eb; top: -60px; right: 10%; }
.hero-decor.shape-2 { width: 200px; height: 200px; background: #10b981; bottom: -60px; left: 15%; }
.hero-decor.shape-3 { width: 180px; height: 180px; background: #f59e0b; top: 20%; left: -40px; }

/* Product card subtle lift */
.product-card { border-radius: var(--border-radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,0,0,0.18); }

/* Sticky behavior on scroll */
/* JS tarafında zaten .navbar-scrolled ekleniyor; gradient sınıfıyla birlikte çalışır. */ 

/* References - Hero stat cards */
.hero-stats .hero-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1rem 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-stats .hero-stat-card--wide { padding: 1rem 1.25rem; }
.hero-stat-number { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: .9rem; color: rgba(255,255,255,.85); }

/* Bottom wave divider for hero */
.hero-divider svg { display: block; width: 100%; height: auto; }

/* References - Logo cards */
.logo-card {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  border: 1px solid rgba(0,0,0,.05);
}
.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  background-color: #f8fafc;
}
.logo-card img {
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}
.logo-card:hover img {
  filter: grayscale(0%) !important;
  transform: scale(1.06);
  opacity: 1 !important;
} 

/* Reference logo tweaks */
.logo-card { position: relative; z-index: 1; }
.logo-img { display: block; }
.logo-name {
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
}
/* ensure sections below do not overlap names */
#clients, #partners { position: relative; z-index: 2; }

/* When card is hovered, emphasize name */
.logo-card:hover .logo-name { color: #1e3a8a; } 

/* Icon feature cards */
.icon-feature-card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 1rem; box-shadow: var(--box-shadow); }
.icon-feature-card h6, .icon-feature-card h5 { margin: .5rem 0; }
.icon-feature-card p { margin: 0; color: #6b7280; font-size: .95rem; }
.icon-feature-icon { width: 44px; height: 44px; display:flex; align-items:center; justify-content:center; border-radius: 10px; background: linear-gradient(135deg,#1e3a8a,#f97316); color: #fff; margin-bottom: .5rem; }

/* Timeline */
.timeline { position: relative; padding-left: 24px; }
.timeline:before { content:''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: rgba(0,0,0,.08); }
.timeline-item { position: relative; margin-bottom: 16px; }
.timeline-dot { position: absolute; left: 3px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #f97316; box-shadow: 0 0 0 4px rgba(249,115,22,.15); }
.timeline-content { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 10px; padding: .75rem 1rem; box-shadow: var(--box-shadow); }
.timeline-content h6 { margin: 0 0 .25rem 0; color: #1f2937; }

/* Certificates */
.certificate-card { display:flex; gap:.75rem; align-items:center; background:#fff; border:1px solid rgba(0,0,0,.06); padding:1rem; border-radius:12px; box-shadow: var(--box-shadow); }
.certificate-card i { font-size: 1.5rem; }
.certificate-card h6 { margin: 0; }
.certificate-card small { color:#6b7280; }

/* Team */
.team-card { background:#fff; border:1px solid rgba(0,0,0,.06); text-align:center; padding:1rem; border-radius:12px; box-shadow: var(--box-shadow); }
.team-photo { width:100%; height:200px; object-fit:cover; border-radius:10px; margin-bottom:.5rem; }
.team-card h6 { margin:.25rem 0 0.15rem 0; }
.team-card small { color:#6b7280; }

/* Gallery */
.gallery-grid img { transition: transform .25s ease, box-shadow .25s ease; }
.gallery-grid img:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }

/* CTA */
.cta-banner { background: linear-gradient(135deg,#f8fafc,#eef2ff); border:1px solid rgba(0,0,0,.06); border-radius:14px; padding:1.25rem 1.5rem; box-shadow: var(--box-shadow); } 

/* About stats section */
.stats-section {
  background: linear-gradient(180deg, rgba(16,42,107,0.03), rgba(16,42,107,0));
}
.stats-section .stat-counter {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 16px;
  box-shadow: 0 8px 24px rgba(16,42,107,0.08);
}
.stats-section .stat-number {
  font-weight: 800;
  font-size: 28px;
  color: var(--primary-700, #1e3a8a);
}
.stats-section .stat-label {
  margin-top: 4px;
  color: #6b7280;
  font-weight: 600;
} 

/* Contact page polish */
.contact-hero { position: relative; }
.contact-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 360px at 90% 10%, rgba(59,130,246,.18), transparent 60%), radial-gradient(700px 360px at 10% 35%, rgba(16,185,129,.14), transparent 60%); pointer-events: none; }

.contact-badges .badge { border: 1px solid rgba(0,0,0,.06); box-shadow: 0 6px 18px rgba(16,42,107,0.08); }

.contact-form-card { border: 1px solid rgba(0,0,0,.06); border-radius: 16px; background: #fff; box-shadow: 0 16px 28px rgba(16,42,107,0.12); }
.contact-form-card .form-label { font-weight: 700; color: #0f172a; }
.contact-form-card .form-control, .contact-form-card .form-select { padding: 0.7rem 0.9rem; border-radius: 10px; }
.contact-form-card .btn { border-radius: 10px; }

.contact-info-card { background: #0c1224; color: #fff; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; box-shadow: 0 12px 26px rgba(0,0,0,.28); }
.contact-info-card h5, .contact-info-card h6 { color: #ffda55; }
.contact-info-card .contact-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.contact-info-card .contact-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #9fb4ff; }
.contact-info-card a { color: #e5edff; text-decoration: none; }
.contact-info-card a:hover { color: #fff; }

.cta-banner { background: #f8fbff; border: 1px solid #e8eefb; border-radius: 16px; padding: 18px; box-shadow: 0 10px 20px rgba(16,42,107,.08); }

/* Toast (success) */
.toast-inline { position: fixed; right: 16px; bottom: 16px; z-index: 1080; background: #16a34a; color: #fff; padding: 12px 16px; border-radius: 10px; box-shadow: 0 10px 24px rgba(0,0,0,.2); display: none; }
.toast-inline.show { display: block; }

@media (max-width: 992px) {
  .contact-info-card { background: #0f1a39; }
}

/* References - Logo cards */
.logo-card {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  border: 1px solid rgba(0,0,0,.05);
}
.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  background-color: #f8fafc;
}
.logo-card img {
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}
.logo-card:hover img {
  filter: grayscale(0%) !important;
  transform: scale(1.06);
  opacity: 1 !important;
} 

/* Reference logo tweaks */
.logo-card { position: relative; z-index: 1; }
.logo-img { display: block; }
.logo-name {
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
}
/* ensure sections below do not overlap names */
#clients, #partners { position: relative; z-index: 2; }

/* When card is hovered, emphasize name */
.logo-card:hover .logo-name { color: #1e3a8a; } 

/* Icon feature cards */
.icon-feature-card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 1rem; box-shadow: var(--box-shadow); }
.icon-feature-card h6, .icon-feature-card h5 { margin: .5rem 0; }
.icon-feature-card p { margin: 0; color: #6b7280; font-size: .95rem; }
.icon-feature-icon { width: 44px; height: 44px; display:flex; align-items:center; justify-content:center; border-radius: 10px; background: linear-gradient(135deg,#1e3a8a,#f97316); color: #fff; margin-bottom: .5rem; }

/* Timeline */
.timeline { position: relative; padding-left: 24px; }
.timeline:before { content:''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: rgba(0,0,0,.08); }
.timeline-item { position: relative; margin-bottom: 16px; }
.timeline-dot { position: absolute; left: 3px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #f97316; box-shadow: 0 0 0 4px rgba(249,115,22,.15); }
.timeline-content { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 10px; padding: .75rem 1rem; box-shadow: var(--box-shadow); }
.timeline-content h6 { margin: 0 0 .25rem 0; color: #1f2937; }

/* Certificates */
.certificate-card { display:flex; gap:.75rem; align-items:center; background:#fff; border:1px solid rgba(0,0,0,.06); padding:1rem; border-radius:12px; box-shadow: var(--box-shadow); }
.certificate-card i { font-size: 1.5rem; }
.certificate-card h6 { margin: 0; }
.certificate-card small { color:#6b7280; }

/* Team */
.team-card { background:#fff; border:1px solid rgba(0,0,0,.06); text-align:center; padding:1rem; border-radius:12px; box-shadow: var(--box-shadow); }
.team-photo { width:100%; height:200px; object-fit:cover; border-radius:10px; margin-bottom:.5rem; }
.team-card h6 { margin:.25rem 0 0.15rem 0; }
.team-card small { color:#6b7280; }

/* Gallery */
.gallery-grid img { transition: transform .25s ease, box-shadow .25s ease; }
.gallery-grid img:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }

/* CTA */
.cta-banner { background: linear-gradient(135deg,#f8fafc,#eef2ff); border:1px solid rgba(0,0,0,.06); border-radius:14px; padding:1.25rem 1.5rem; box-shadow: var(--box-shadow); } 

/* About stats section */
.stats-section {
  background: linear-gradient(180deg, rgba(16,42,107,0.03), rgba(16,42,107,0));
}
.stats-section .stat-counter {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 16px;
  box-shadow: 0 8px 24px rgba(16,42,107,0.08);
}
.stats-section .stat-number {
  font-weight: 800;
  font-size: 28px;
  color: var(--primary-700, #1e3a8a);
}
.stats-section .stat-label {
  margin-top: 4px;
  color: #6b7280;
  font-weight: 600;
} 

/* Contact page styles */
.contact-hero {
  background: radial-gradient(1200px 600px at 85% 15%, rgba(59,130,246,0.25), transparent 60%),
              radial-gradient(800px 400px at 10% 40%, rgba(16,185,129,0.18), transparent 60%),
              linear-gradient(135deg, #1e3a8a 0%, #0b1736 100%);
}
.contact-badges .badge { box-shadow: 0 6px 18px rgba(16,42,107,0.08); }

.contact-form-card {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 24px;
}
.contact-form-card .form-control,
.contact-form-card .form-select { border-radius: 10px; }

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(16,42,107,0.08);
}
.map-embed-wrapper { border-radius: 12px; } 

/* Footer signature strip */
.footer-signature {
  background: #0b0f1a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-signature .signature-badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.25), transparent 60%),
              rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 6px 18px rgba(16,42,107,0.25);
}
.footer-signature .signature-badge img { height: 26px; filter: brightness(1.2) contrast(1.2); }
.footer-signature .signature-title { font-weight: 800; color: #f8d24b; letter-spacing: .3px; }
.footer-signature .signature-quote { color: rgba(255,255,255,.7); font-style: italic; }
.footer-signature .signature-meta { color: rgba(255,255,255,.6); }
.footer-signature a { color: #f8d24b; text-decoration: none; }
.footer-signature a:hover { text-decoration: underline; }

/* Footer readability & vibrant contrast */
.footer { background: radial-gradient(900px 400px at 85% 0%, rgba(59,130,246,.12), transparent 60%),
                         radial-gradient(700px 380px at 10% 10%, rgba(16,185,129,.1), transparent 60%),
                         #0c1224; }
.footer-main { border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-title { color:#ffda55; letter-spacing:.2px; }
.footer-brand-name { color:#ffffff; }
.footer p, .footer .text-muted { color: rgba(255,255,255,.82) !important; }
.footer-social { color: rgba(255,255,255,.8); }
.footer-social:hover { color:#fff; transform: translateY(-2px); }
.footer-links.two-col { columns: 2; column-gap: 28px; }
.footer-links a { color: rgba(255,255,255,.9); }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-contact li { color: rgba(255,255,255,.95); }
.footer-contact i { color: #8fb4ff; }
.footer-bottom { background:#0a0f1e; }
.footer-bottom-text { color: rgba(255,255,255,.85); }
.footer-bottom-link { color: rgba(255,255,255,.75); text-decoration:none; }
.footer-bottom-link:hover { color:#fff; } 

/* Footer links polish */
.footer-links.two-col li { break-inside: avoid; margin: 6px 0; padding-left: 14px; position: relative; }
.footer-links.two-col li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #ffda55; position: absolute; left: 0; top: 0.7em; opacity: 0.9; }
.footer-links.two-col a { font-weight: 600; letter-spacing: .1px; }
.footer-links.two-col a:hover { text-decoration: none; }
.footer-links.two-col a::after { content: '\2192'; opacity: 0; transform: translateX(-6px); transition: transform .18s ease, opacity .18s ease; margin-left: 6px; }
.footer-links.two-col a:hover::after { opacity: 1; transform: translateX(0); }

/* Social icons subtle background */
.footer-social { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,0.06); }
.footer-social:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Contact icons as badges */
.footer-contact li i { width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center; background: rgba(255,255,255,0.08); margin-top: 1px; }

/* Signature line tweaks */
.footer-signature .signature-line { gap: 8px; font-size: .95rem; opacity: .92; }
.footer-signature img { height: 16px; }

/* Responsive */
@media (max-width: 576px) {
  .footer-links.two-col { columns: 1; }
  .footer-signature .signature-line { font-size: .9rem; }
} 

/* Footer professional cards */
.footer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-card:hover { box-shadow: 0 16px 34px rgba(0,0,0,0.26); border-color: rgba(255,255,255,0.14); transform: translateY(-2px); }
.footer-title { font-size: 1rem; text-transform: uppercase; letter-spacing: .6px; }
.footer-links.two-col a { font-weight: 600; }
.footer-cta .btn { border-radius: 10px; }

/* Improve readability for brand paragraph */
.footer .text-muted { color: rgba(255,255,255,.86) !important; } 

/* Contact methods */
.contact-methods .method-card {
  display:flex; align-items:center; gap:10px; padding:14px 16px; border-radius:14px;
  background:#ffffff; border:1px solid #e8eefb; text-decoration:none; color:#0f172a;
  box-shadow:0 10px 20px rgba(16,42,107,.08); transition:transform .18s ease, box-shadow .18s ease;
}
.contact-methods .method-card i { font-size:1.25rem; color:#1e3a8a; width:34px; height:34px; border-radius:8px; display:grid; place-items:center; background:#eef3ff; }
.contact-methods .method-card:hover { transform:translateY(-2px); box-shadow:0 16px 28px rgba(16,42,107,.12); }
.contact-methods h6 { margin:0; font-weight:800; }
.contact-methods small { color:#64748b; }

/* Trust badges */
.trust-badge { display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:12px; background:#0c1224; color:#fff; border:1px solid rgba(255,255,255,.08); box-shadow:0 10px 26px rgba(0,0,0,.2); }
.trust-badge i { color:#ffda55; } 