/* ===== GENERAL STYLES ===== */
:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2d2d2d;
    --primary-yellow: #ffc107;
    --secondary-yellow: #ffca2c;
    --accent-yellow: #fff3cd;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', serif;
}

/* ===== MODERN NAVIGATION ===== */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 8px 0;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
}

/* Brand Section */
.modern-brand {
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.brand-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.modern-brand:hover .brand-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Modern Toggler */
.modern-toggler {
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.modern-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modern-toggler:hover .toggler-line {
    background: var(--primary-yellow);
}

.modern-toggler.active .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler.active .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler.active .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Modern Navigation Links */
.modern-nav {
    gap: 10px;
}

.modern-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-black) !important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    background: transparent;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.modern-nav-link:hover::before,
.modern-nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.modern-nav-link:hover,
.modern-nav-link.active {
    color: var(--primary-black) !important;
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-nav-link:hover .nav-icon {
    transform: scale(1.1);
}

/* CTA Button in Nav */
.nav-cta {
    margin-left: 15px;
}

.cta-btn {
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow)) !important;
    color: var(--primary-black) !important;
    font-weight: 700;
    padding: 12px 25px !important;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-btn::before {
    display: none;
}

.cta-btn:hover {
    background: var(--primary-black) !important;
    color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== MODERN HERO SECTION ===== */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="200" r="2" fill="%23ffc107" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite"/></circle><circle cx="300" cy="100" r="1.5" fill="%23000000" opacity="0.4"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="500" cy="300" r="2.5" fill="%23ffc107" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="700" cy="150" r="1" fill="%23000000" opacity="0.3"><animate attributeName="opacity" values="0.3;0.7;0.3" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="850" cy="400" r="2" fill="%23ffc107" opacity="0.7"><animate attributeName="opacity" values="0.7;1;0.7" dur="2s" repeatCount="indefinite"/></circle></svg>');
    background-size: 1200px 1200px;
    animation: float-particles 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 193, 7, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 0, 0, 0.05) 100%);
}

@keyframes float-particles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 60px 0; /* Added top padding for fixed navbar */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.8s ease 0.2s both;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 0.8rem;
    color: var(--primary-black);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-black);
    animation: slideInLeft 0.8s ease 0.4s both;
}

.title-line-1 {
    display: block;
    color: var(--secondary-black);
}

.title-line-2 {
    display: block;
}

.highlight-text {
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
    animation: slideInLeft 0.8s ease 0.6s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInLeft 0.8s ease 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-black);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    color: var(--secondary-black);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 0.9rem;
    color: var(--primary-black);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease 1s both;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    min-width: 200px;
}

.hero-btn.primary {
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--primary-black);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.hero-btn.primary:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-black);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-btn.secondary:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
    border-color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtext {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.3;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: slideInUp 0.8s ease 1.2s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: var(--primary-black);
    transform: scale(1.05);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-container {
    position: relative;
    animation: slideInRight 0.8s ease 0.3s both;
}

.logo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-ring {
    position: absolute;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: rotate-slow 20s linear infinite;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation: rotate-medium 15s linear infinite reverse;
    border-color: rgba(0, 0, 0, 0.1);
}

.ring-3 {
    width: 100px;
    height: 100px;
    animation: rotate-fast 10s linear infinite;
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-medium {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes rotate-fast {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-black);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    animation: logo-pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 20px 50px rgba(255, 193, 7, 0.6); }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.floating-1 {
    top: 20%;
    right: 10%;
    animation: float-1 4s ease-in-out infinite;
}

.floating-2 {
    bottom: 30%;
    left: 10%;
    animation: float-2 5s ease-in-out infinite;
}

.floating-3 {
    bottom: 10%;
    right: 20%;
    animation: float-3 6s ease-in-out infinite;
}

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

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

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

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1rem;
    color: var(--primary-black);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-1, .decoration-2, .decoration-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
}

.decoration-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 20%;
    animation: float-decoration 8s ease-in-out infinite;
}

.decoration-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 30%;
    animation: float-decoration 10s ease-in-out infinite reverse;
}

.decoration-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 30%;
    animation: float-decoration 12s ease-in-out infinite;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: slideInUp 0.8s ease 1.5s both;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-link:hover {
    color: var(--primary-black);
    transform: translateY(-5px);
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-arrow 2s ease-in-out infinite;
}

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

/* Hero Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        padding: 100px 0 40px 0; /* Reduced top padding for mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        margin-top: 50px;
    }
    
    .stat-card {
        position: static;
        margin: 10px 0;
        width: 100%;
        max-width: 250px;
    }
    
    .floating-1, .floating-2, .floating-3 {
        position: static;
        animation: none;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 90px 0 30px 0; /* Further reduced top padding for small mobile */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .ring-1 {
        width: 150px;
        height: 150px;
    }
    
    .ring-2 {
        width: 120px;
        height: 120px;
    }
    
    .ring-3 {
        width: 80px;
        height: 80px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="%23ffc107" fill-opacity="0.03"/><circle cx="800" cy="400" r="150" fill="%23000000" fill-opacity="0.02"/><circle cx="400" cy="800" r="80" fill="%23ffc107" fill-opacity="0.04"/></svg>');
    background-size: 1200px 1200px;
    animation: float 20s ease-in-out infinite;
}

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

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.divider-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 2px;
}

.divider-icon {
    margin: 0 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 3s linear infinite;
}

.divider-icon i {
    font-size: 1.2rem;
    color: var(--primary-black);
}

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

/* New Service Cards */
.service-card-new {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.service-card-new .card-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 25px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.service-icon-new i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.service-card-new:hover .service-icon-new {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.service-badge {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.urgent {
    background: #dc3545;
    color: white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-card-new .card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-new h4 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--primary-black);
    transform: translateX(5px);
}

.service-features li i {
    color: var(--primary-yellow);
    font-size: 0.8rem;
}

.service-action {
    margin-top: auto;
}

.service-btn {
    display: inline-block;
    background: var(--primary-black);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: scale(1.05);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Service Category Colors */
.service-card-new.commercial .card-header {
    background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
}

.service-card-new.family .card-header {
    background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
}

.service-card-new.criminal .card-header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.service-card-new.realestate .card-header {
    background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
}

.service-card-new.labor .card-header {
    background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
}

.service-card-new.administrative .card-header {
    background: linear-gradient(135deg, #553c9a 0%, #44337a 100%);
}

/* Additional Services */
.additional-services {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 193, 7, 0.1);
}

.mini-service {
    text-align: center;
    padding: 25px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mini-service:hover {
    background: rgba(255, 193, 7, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.mini-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mini-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.mini-service:hover .mini-icon {
    transform: scale(1.1) rotate(5deg);
}

.mini-service h6 {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.mini-service p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.services-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 100 100"><circle cx="20" cy="20" r="3" fill="%23ffc107" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="2" fill="%23ffc107" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="80" r="2.5" fill="%23ffc107" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
    background-size: 300px 300px;
}

.services-cta h4,
.services-cta p {
    position: relative;
    z-index: 2;
}

.consultation-btn {
    background: var(--primary-yellow) !important;
    border: none;
    color: var(--primary-black) !important;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.consultation-btn:hover {
    background: var(--secondary-yellow) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
}

/* Responsive Services */
@media (max-width: 768px) {
    .service-card-new .card-header {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-badge {
        margin-top: 15px;
    }
    
    .service-card-new .card-content {
        padding: 25px 20px;
    }
    
    .additional-services {
        padding: 30px 20px;
    }
    
    .mini-service {
        margin-bottom: 20px;
    }
    
    .services-cta {
        padding: 30px 20px;
        text-align: center;
    }
    
    .consultation-btn {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .service-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-new i {
        font-size: 1.5rem;
    }
    
    .service-card-new h4 {
        font-size: 1.2rem;
    }
    
    .mini-icon {
        width: 50px;
        height: 50px;
    }
    
    .mini-icon i {
        font-size: 1.2rem;
    }
    
    .services-cta {
        padding: 25px 15px;
    }
    
    .consultation-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffc107" fill-opacity="0.03" points="0,0 1000,300 1000,0"/><polygon fill="%23000000" fill-opacity="0.02" points="0,1000 1000,700 1000,1000"/></svg>');
    background-size: cover;
}

.about-content {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-yellow);
    margin-bottom: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--primary-black);
}

.feature-content h6 {
    margin-bottom: 5px;
    color: var(--primary-black);
    font-weight: 700;
}

.feature-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.25);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
}

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

.mission-card .card-header, .vision-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mission-card .card-icon, .vision-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.mission-card .card-icon i, .vision-card .card-icon i {
    font-size: 1.3rem;
    color: var(--primary-black);
}

.mission-card h4, .vision-card h4 {
    margin: 0;
    color: var(--primary-black);
    font-family: 'Playfair Display', serif;
}

.mission-card .card-content p, .vision-card .card-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.values-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.value-item:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-item h6 {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .mission-card, .vision-card {
        margin-bottom: 20px;
    }
    
    .values-section {
        padding: 30px 20px;
    }
    
    .value-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-card, .vision-card {
        padding: 25px 20px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23000000" fill-opacity="0.05" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
    background-position: bottom;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

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

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h5 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-btn {
    display: inline-block;
    background: var(--primary-black);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.contact-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: scale(1.05);
    text-decoration: none;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.status-badge.open {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.open i {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-header h4 {
    color: var(--primary-black);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-frame iframe {
    transition: all 0.3s ease;
}

.map-frame:hover iframe {
    transform: scale(1.02);
}

.info-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(5px);
}

/* Quick Contact Banner */
.quick-contact-banner {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.quick-contact-banner::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"><circle cx="20" cy="20" r="2" fill="%23ffc107" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%23ffc107" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="80" r="1" fill="%23ffc107" opacity="0.2"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
    background-size: 200px 200px;
}

.quick-contact-banner h4 {
    position: relative;
    z-index: 2;
}

.quick-contact-banner p {
    position: relative;
    z-index: 2;
}

.emergency-btn {
    background: var(--primary-yellow) !important;
    border: none;
    color: var(--primary-black) !important;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    animation: emergency-pulse 2s infinite;
}

.emergency-btn:hover {
    background: var(--secondary-yellow) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

@keyframes emergency-pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3); }
    50% { box-shadow: 0 5px 30px rgba(255, 193, 7, 0.5); }
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 20px;
    }
    
    .map-container {
        margin-top: 30px;
    }
    
    .map-frame iframe {
        height: 300px;
    }
    
    .quick-contact-banner {
        text-align: center;
        margin-top: 30px;
    }
    
    .emergency-btn {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .quick-contact-banner {
        padding: 25px 20px;
    }
    
    .emergency-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===== FOOTER ===== */
.footer-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
    border-top: 3px solid var(--primary-yellow);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffc107" fill-opacity="0.05" points="0,0 1000,200 1000,0"/></svg>');
    background-size: cover;
    background-position: top;
}

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

.footer-widget {
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo i {
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-size: 0.7rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

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

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-item-footer {
    display: flex;
    align-items: center;
    color: #b8b8b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-item-footer:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 25px 0 0 25px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #b8b8b8;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-yellow);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.newsletter-btn {
    border-radius: 0 25px 25px 0;
    padding: 12px 20px;
    border: none;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--primary-black);
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, var(--secondary-yellow), var(--primary-yellow));
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

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

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.footer-legal-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: var(--primary-yellow) !important;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 15px;
    }
    
    .footer-bottom .row > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 3rem 0 !important;
    }
    
    .footer-logo h4 {
        font-size: 1.3rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .stats-container {
        margin-top: 40px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .stats-container {
        padding: 30px 15px;
    }
}

/* ===== ANIMATION UTILITIES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-yellow);
}

/* ===== LOADING ANIMATION ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in {
    animation: slideIn 0.6s ease forwards;
}
