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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #202950;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.navbar {
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(43, 77, 156, 0.1);
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(32, 41, 80, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(43, 77, 156, 0.2);
}

.navbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 3rem;
    position: relative;
    max-width: 100%;
    margin: 0;
}

/* Logo */
.navbar-brand {
    position: absolute;
    left: 3rem;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    transition: transform 0.3s ease;
    border-radius: 4px;
}

/* Navigation Container */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: static;
}

/* Desktop Navigation */
.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2544DA;
    transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* CTA Button */
.navbar-cta {
    position: absolute;
    right: 3rem;
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 68, 218, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 68, 218, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-icon {
    font-size: 1rem;
}

.cta-text {
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    background: rgba(37, 68, 218, 0.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #2544DA;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #2544DA;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(42, 76, 166, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 100vh;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-links li {
    margin: 1.25rem 0;
}

.mobile-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    display: block;
    border: 1px solid transparent;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: #2544DA;
    background: rgba(37, 68, 218, 0.15);
    border-color: rgba(37, 68, 218, 0.3);
    transform: translateX(5px);
}

.mobile-nav-cta {
    margin-top: 2rem;
    width: 100%;
    max-width: 280px;
}

.mobile-cta {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 1.25rem 2.5rem;
    }
    
    .navbar-brand {
        left: 2.5rem;
    }
    
    .navbar-cta {
        right: 2.5rem;
    }
    
    .navbar-right {
        gap: 2.5rem;
    }
    
    .navbar-nav {
        gap: 1.75rem;
    }
    
    .logo-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .navbar-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 2rem;
    }
    
    .navbar-container {
        padding: 1.25rem 2rem;
        min-height: 70px;
        justify-content: flex-start;
    }
    
    .navbar-brand {
        position: static;
        left: auto;
    }
    
    .navbar-cta {
        display: none;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 1rem 1.5rem;
        min-height: 65px;
    }
    
    .mobile-menu-toggle {
        right: 1.5rem;
        width: 44px;
        height: 44px;
        padding: 6px;
    }
    
    .logo-icon {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hamburger-line {
        width: 26px;
        height: 3px;
    }
    
    .mobile-nav-link {
        font-size: 1.4rem;
        padding: 1rem 1.5rem;
        margin: 0.75rem 0;
    }
    
    .mobile-cta {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(32, 41, 80, 0.8) 0%, rgba(42, 59, 107, 0.7) 50%, rgba(53, 74, 122, 0.8) 100%),
        url('images/BG-Hero-Section.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(43, 77, 156, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(32, 41, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: #FFFFFF;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 4px 8px rgba(43, 77, 156, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: #F8F9FA;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .cta-button {
    padding: 1.125rem 2.25rem;
    font-size: 1.05rem;
    border-radius: 12px;
    min-width: 220px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(37, 68, 218, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-buttons .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .cta-button:hover::before {
    left: 100%;
}

.btn-secondary {
    background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
    color: #1A1A2E;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
    color: #1A1A2E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.trust-indicators {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.trust-indicators span {
    color: #B8BCC8;
    font-size: 0.95rem;
    font-weight: 500;
}

.rating {
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.rating svg {
    fill: #FFD700;
    color: #FFD700;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Hero Responsive Design */
@media (max-width: 1200px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero .container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .hero-buttons {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
        max-width: 550px;
    }
    
    .hero-buttons .cta-button,
    .btn-secondary {
        min-width: 200px;
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .trust-indicators {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero .container {
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        margin-bottom: 1.5rem;
        line-height: 1.3;
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    
    .hero p {
        margin-bottom: 2.25rem;
        max-width: 100%;
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
        max-width: 400px;
    }
    
    .hero-buttons .cta-button,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
        min-width: auto;
        padding: 1.125rem 1.75rem;
        font-size: 1.05rem;
        border-radius: 14px;
        font-weight: 600;
    }
    
    .hero-buttons .cta-button {
        order: 1;
        box-shadow: 0 8px 25px rgba(37, 68, 218, 0.5);
    }
    
    .btn-secondary {
        order: 2;
        background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
        color: #1A1A2E;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .trust-indicators {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .trust-indicators span {
        font-size: 0.9rem;
    }
    
    .floating-element {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 50px;
        min-height: 85vh;
        background-attachment: scroll;
        background-position: center top; /* Better positioning for mobile */
    }
    
    .hero .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        margin-bottom: 1.25rem;
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .hero p {
        margin-bottom: 2rem;
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.5;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
        gap: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-buttons .cta-button,
    .btn-secondary {
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .cta-button {
        box-shadow: 0 6px 20px rgba(37, 68, 218, 0.4);
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
        color: #1A1A2E;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .trust-indicators {
        margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .trust-indicators span {
        font-size: 0.85rem;
    }
    
    .rating {
        gap: 0.25rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 80px 0 40px;
        min-height: 80vh;
        background-attachment: scroll;
        background-position: center top;
    }
    
    .hero .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 1.75rem;
    }
    
    .hero-buttons {
        gap: 0.875rem;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }
    
    .hero-buttons .cta-button,
    .btn-secondary {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 10px;
        min-height: 48px;
    }
    
    .hero-buttons .cta-button {
        box-shadow: 0 4px 15px rgba(37, 68, 218, 0.4);
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
        color: #1A1A2E;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .trust-indicators span {
        font-size: 0.8rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #1A2040;
}

/* Unified Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(43, 77, 156, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #B8BCC8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive untuk tablet */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive untuk mobile */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(135deg, #2A3B6B, #354A7A);
    border: 1px solid rgba(74, 95, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2B4D9C, #202950);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(74, 95, 255, 0.25);
    border-color: rgba(74, 95, 255, 0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.service-card p {
    color: #E2E8F0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -1px;
}

.service-price {
    margin-bottom: 1rem;
}

.service-price .price-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2B4D9C;
    display: block;
    margin-bottom: 0.5rem;
}

.service-price .price-note {
    font-size: 0.85rem;
    color: #CBD5E1;
    font-style: italic;
    display: block;
}

.service-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-contact-btn:hover {
    background: linear-gradient(135deg, #1E3A7A, #1A2040);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 68, 218, 0.3);
}

/* Coming Soon Service Card Styles - Police Theme */
.service-card.coming-soon {
    position: relative;
    overflow: hidden;
}

/* Police tape background overlay */
.service-card.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 215, 0, 0.1) 0px,
            rgba(255, 215, 0, 0.1) 20px,
            rgba(0, 0, 0, 0.1) 20px,
            rgba(0, 0, 0, 0.1) 40px
        ),
        rgba(32, 41, 80, 0.2);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    animation: police-tape-move 4s linear infinite;
}

/* Main police stamp */
.service-card.coming-soon::after {
    content: '🚨 COMING SOON 🚨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: 
        linear-gradient(135deg, #1E40AF, #1E3A8A),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    color: #FFFFFF;
    padding: 25px 50px;
    border: 6px double #FFD700;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    box-shadow: 
        0 0 0 3px #1E40AF,
        0 0 0 6px #FFD700,
        0 12px 40px rgba(30, 64, 175, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
    animation: police-stamp-pulse 2.5s ease-in-out infinite;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: relative;
}

/* Police badge effect on stamp */
.service-card.coming-soon::after::before {
    content: '★';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: star-twinkle 1.5s ease-in-out infinite alternate;
}

/* Police-themed animations */
@keyframes police-stamp-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
        box-shadow: 
            0 0 0 3px #1E40AF,
            0 0 0 6px #FFD700,
            0 12px 40px rgba(30, 64, 175, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(1.08);
        box-shadow: 
            0 0 0 3px #1E40AF,
            0 0 0 6px #FFD700,
            0 16px 50px rgba(30, 64, 175, 0.8),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    }
}

@keyframes police-tape-move {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 56px 56px;
    }
}

@keyframes star-twinkle {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 1),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}



.service-contact-btn.disabled {
    background: linear-gradient(135deg, #64748B, #475569);
    color: #CBD5E1;
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

.service-contact-btn.disabled:hover {
    background: linear-gradient(135deg, #64748B, #475569);
    transform: none;
    box-shadow: none;
}

/* Ensure content is positioned correctly under the stamp */
.service-card.coming-soon .service-icon,
.service-card.coming-soon h3,
.service-card.coming-soon p,
.service-card.coming-soon .service-features,
.service-card.coming-soon .service-price {
    position: relative;
    z-index: 2;
}

/* Mobile responsive adjustments for stamp */
@media (max-width: 768px) {
    .service-card.coming-soon::after {
        font-size: 1.4rem;
        padding: 15px 40px;
        letter-spacing: 2px;
        transform: translate(-50%, -50%) rotate(-20deg);
    }
}

@media (max-width: 480px) {
    .service-card.coming-soon::after {
        font-size: 1.2rem;
        padding: 12px 30px;
        letter-spacing: 1.5px;
        transform: translate(-50%, -50%) rotate(-15deg);
    }
}

/* Responsive untuk service cards */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        padding-left: 1.5rem;
    }
    
    .service-features li::before {
        width: 18px;
        height: 18px;
        font-size: 1rem;
    }
    
    .service-contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(135deg, #202950, #2A3B6B);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.feature-card p {
    color: #E2E8F0;
    line-height: 1.6;
}

/* Portfolio Header Section */
.portfolio-header {
    background: 
        linear-gradient(135deg, rgba(32, 41, 80, 0.95) 0%, rgba(42, 59, 107, 0.9) 50%, rgba(53, 74, 122, 0.95) 100%),
        url('images/BG-Hero-Section.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 95, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 115, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(32, 41, 80, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
    pointer-events: none;
}

.portfolio-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(74, 95, 255, 0.03) 100px,
            rgba(74, 95, 255, 0.03) 101px
        );
    pointer-events: none;
}

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

.portfolio-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.portfolio-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 4px 8px rgba(43, 77, 156, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.portfolio-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2B4D9C, #202950);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(43, 77, 156, 0.5);
}

.portfolio-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #F8F9FA;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(43, 77, 156, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(43, 77, 156, 0.2);
}

.breadcrumb a {
    color: #2B4D9C;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a:hover {
    color: #202950;
    text-shadow: 0 0 10px rgba(43, 77, 156, 0.5);
}

.breadcrumb span {
    color: #B8BCC8;
    font-weight: 500;
    font-size: 0.95rem;
}

.breadcrumb span:last-child {
    color: #FFFFFF;
    font-weight: 600;
}

/* Floating animation elements for portfolio header */
.portfolio-header .floating-element {
    position: absolute;
    z-index: 1;
    opacity: 0.4;
    animation: portfolioFloat 8s ease-in-out infinite;
}

.portfolio-header .floating-element:nth-child(1) {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #2544DA, transparent);
    border-radius: 50%;
    animation-delay: 0s;
}

.portfolio-header .floating-element:nth-child(2) {
    top: 70%;
    right: 12%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2A4CA6, transparent);
    border-radius: 15px;
    animation-delay: 3s;
}

.portfolio-header .floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #2544DA, transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 6s;
}

@keyframes portfolioFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) rotate(10deg);
        opacity: 0.6;
    }
}

/* Portfolio Header Responsive Design */
@media (max-width: 1024px) {
    .portfolio-header {
        padding: 120px 0 60px;
        min-height: 50vh;
    }
    
    .portfolio-header h1::after {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 768px) {
    .portfolio-header {
        padding: 110px 0 50px;
        min-height: 45vh;
        background-attachment: scroll;
    }
    
    .portfolio-header-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .portfolio-header h1 {
        margin-bottom: 1.25rem;
    }
    
    .portfolio-header h1::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
    
    .portfolio-header p {
        margin-bottom: 2rem;
    }
    
    .breadcrumb {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        font-size: 0.9rem;
    }
    
    .portfolio-header .floating-element {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .portfolio-header {
        padding: 100px 0 40px;
        min-height: 40vh;
        background-attachment: scroll;
        background-position: center top;
    }
    
    .portfolio-header-content {
        padding: 0 0.5rem;
    }
    
    .portfolio-header h1 {
        margin-bottom: 1rem;
    }
    
    .portfolio-header h1::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }
    
    .portfolio-header p {
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb {
        padding: 0.6rem 1.25rem;
        margin-top: 1.25rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        font-size: 0.85rem;
    }
    
    .portfolio-header .floating-element {
        display: none;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #0F0F0F 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(34, 63, 254, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.portfolio-section .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 3rem;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    min-height: 40px;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #1E3A7A, #1A2040);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 68, 218, 0.3);
}

.filter-btn.active {
    background: rgba(74, 95, 255, 0.9);
    border-color: rgba(74, 95, 255, 1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 95, 255, 0.3);
}

.filter-count {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.25);
}

/* Filter Animation States */
.filter-btn.filtering {
    pointer-events: none;
    opacity: 0.7;
}

.filter-btn.filtering.active {
    opacity: 1;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Preview - Only show first 4 items */
.portfolio-grid.portfolio-preview .portfolio-item:nth-child(n+5) {
    display: none;
}

/* Enhanced Portfolio Item Animation */
.portfolio-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease-out forwards;
}

.portfolio-item.fade-out {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    pointer-events: none;
}

.portfolio-item.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced Portfolio Card */
.portfolio-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    height: 100%;
    min-height: 480px;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 95, 255, 0.15) 0%, rgba(107, 115, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 20px;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    border-color: rgba(74, 95, 255, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(74, 95, 255, 0.4),
        0 0 40px rgba(74, 95, 255, 0.25);
}

/* Portfolio Image */
.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    min-height: 100%;
    min-width: 100%;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    min-height: 100%;
    min-width: 100%;
}

.portfolio-card:hover .portfolio-placeholder,
.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 95, 255, 0.9) 0%, rgba(107, 115, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

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

.portfolio-actions {
    display: flex;
    gap: 16px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-actions {
    transform: translateY(0);
}

.btn-view,
.btn-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view:hover,
.btn-demo:hover {
    background: linear-gradient(135deg, #1E3A7A, #1A2040);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 68, 218, 0.3);
}

.btn-view svg,
.btn-demo svg {
    width: 16px;
    height: 16px;
}

/* Enhanced Portfolio Content */
.portfolio-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    font-weight: 400;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-client {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-year {
    background: linear-gradient(135deg, rgba(74, 95, 255, 0.3) 0%, rgba(107, 115, 255, 0.2) 100%);
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(74, 95, 255, 0.4);
}

/* Enhanced Portfolio Tags */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
}

.tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tag:hover {
    background: rgba(74, 95, 255, 0.3);
    border-color: rgba(74, 95, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.tag.primary {
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    border-color: #2544DA;
    color: #fff;
    font-weight: 600;
}

.tag:hover {
    background: rgba(74, 95, 255, 0.2);
    border-color: rgba(74, 95, 255, 0.4);
    color: #fff;
}

/* Load More Button */
.portfolio-section .portfolio-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #1E3A7A, #1A2040);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 68, 218, 0.3);
    color: #fff;
}

.load-more-btn svg {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.load-more-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 5rem 0;
    }
    
    .portfolio-section .section-header {
        margin-bottom: 3rem;
    }
    
    .portfolio-filter {
        gap: 6px;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-height: 36px;
    }
    
    .filter-count {
        padding: 1px 5px;
        font-size: 10px;
        min-width: 16px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-content {
        padding: 16px;
    }
    
    .portfolio-content h3 {
        font-size: 17px;
    }

    .load-more-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 4rem 0;
    }
    
    .portfolio-section .section-header {
        margin-bottom: 2.5rem;
    }
    
    .portfolio-filter {
        flex-direction: row;
        justify-content: center;
        gap: 4px;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 32px;
        flex: 0 0 auto;
    }
    
    .filter-count {
        padding: 1px 4px;
        font-size: 9px;
        min-width: 14px;
    }
    
    .portfolio-grid {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-content {
        padding: 16px;
    }
    
    .portfolio-content h3 {
        font-size: 16px;
    }
    
    .portfolio-content p {
        font-size: 13px;
    }
    
    .portfolio-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .load-more-btn {
        padding: 14px 26px;
        font-size: 14px;
    }
    
    .portfolio-section .portfolio-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
        width: 100%;
    }
}



/* About Us Section */
.about-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(15, 52, 96, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-us .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

/* About Logo Styling */
.about-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.about-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-logo-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-mission {
    margin-bottom: 3rem;
}

.mission-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.mission-icon {
    background: linear-gradient(135deg, #2544DA 0%, #2A4CA6 100%);
    border-radius: 12px;
    padding: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 68, 218, 0.3);
}

.about-mission h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 600;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.about-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B8BCC8;
    margin-bottom: 1rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.2) 0%, rgba(22, 33, 62, 0.1) 100%);
    border: 1px solid rgba(15, 52, 96, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    background: linear-gradient(135deg, #0F3460 0%, #16213E 100%);
    border-radius: 12px;
    padding: 12px;
    color: white;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.highlight-content p {
    color: #B0B7C3;
    line-height: 1.6;
    margin: 0;
}

/* Mission Statement */
.main-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #D1D5DB;
    margin: 0;
}

.main-description strong {
    color: #FFFFFF;
    font-weight: 600;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.15) 0%, rgba(22, 33, 62, 0.08) 100%);
    border: 1px solid rgba(15, 52, 96, 0.25);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mission-icon {
    background: linear-gradient(135deg, #2544DA 0%, #2A4CA6 100%);
    border-radius: 12px;
    padding: 12px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.mission-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.mission-content p {
    color: #B0B7C3;
    line-height: 1.6;
    margin: 0;
}

.mission-content strong {
    color: #FFFFFF;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.achievement-item {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 52, 96, 0.5);
    box-shadow: 0 10px 30px rgba(15, 52, 96, 0.3);
}

.achievement-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F3460;
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 0.9rem;
    color: #B0B7C3;
    font-weight: 500;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.values-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.1) 0%, rgba(22, 33, 62, 0.05) 100%);
    border: 1px solid rgba(15, 52, 96, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 52, 96, 0.4);
    box-shadow: 0 8px 25px rgba(15, 52, 96, 0.25);
}

.value-icon {
    background: linear-gradient(135deg, #2544DA 0%, #2A4CA6 100%);
    border-radius: 10px;
    padding: 10px;
    color: white;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.value-content p {
    font-size: 0.9rem;
    color: #B0B7C3;
    line-height: 1.5;
    margin: 0;
}

/* Performance Stats */
.performance-stats {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(34, 63, 254, 0.08) 0%, rgba(74, 95, 255, 0.04) 100%);
    border: 1px solid rgba(34, 63, 254, 0.15);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 63, 254, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 63, 254, 0.3);
    box-shadow: 0 10px 30px rgba(34, 63, 254, 0.2);
}

.stat-icon {
    background: linear-gradient(135deg, #2B4D9C 0%, #202950 100%);
    border-radius: 12px;
    padding: 12px;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.stat-info {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #B0B7C3;
    font-weight: 500;
}

/* CTA Section */
.about-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.about-cta .cta-button {
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 68, 218, 0.3);
}

.about-cta .btn-secondary {
    background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
    color: #1A1A2E;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.about-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 68, 218, 0.4);
    background: linear-gradient(135deg, #1E3A7A, #1A2040);
}

.about-cta .btn-secondary:hover {
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
    color: #1A1A2E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-main-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-us .section-header h2 {
        font-size: 3rem;
    }
    
    .about-logo-img {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 50px 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta {
        gap: 15px;
    }
    
    .about-cta .cta-button,
    .about-cta .btn-secondary {
        min-width: 180px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .mission-highlight {
        gap: 12px;
    }
    
    .mission-icon {
        padding: 10px;
    }
    
    .about-mission h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 80px 0;
    }
    
    .about-main-content,
    .about-content {
        gap: 50px;
    }
    
    .about-us .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .about-logo-img {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 2.5rem;
    }
    
    .about-cta .cta-button,
    .about-cta .btn-secondary {
        width: 100%;
        max-width: 320px;
        min-width: auto;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .mission-highlight {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 1.5rem;
    }
    
    .mission-icon {
        padding: 8px;
    }
    
    .about-mission h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .highlight-box,
    .mission-statement {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .values-section,
    .performance-stats {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-logo-img {
        width: 50px;
        height: 50px;
        padding: 8px;
        margin-bottom: 1rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .highlight-box,
    .mission-statement,
    .values-section,
    .performance-stats {
        padding: 25px 15px;
    }
    
    .achievement-number {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .values-title,
    .stats-title {
        font-size: 1.5rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .about-cta {
        margin-top: 2rem;
        gap: 12px;
    }
    
    .about-cta .cta-button,
    .about-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .mission-highlight {
        margin-bottom: 1.2rem;
    }
    
    .mission-icon {
        padding: 6px;
    }
    
    .about-mission h3 {
        font-size: 1.2rem;
    }
}

.process {
    padding: 6rem 0;
    background: #0F0F0F;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(34, 63, 254, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 63, 254, 0.5);
    box-shadow: 0 10px 30px rgba(34, 63, 254, 0.2);
}

/* Removed all connector lines and arrows for cleaner design */

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2B4D9C, #202950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(34, 63, 254, 0.3);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.process-step p {
    color: #6C757D;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive design for process flow */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step::after,
    .process-step::before {
        display: none;
    }
    
    .process-step {
        position: relative;
    }
}

/* CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1A2E, #202950);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 77, 156, 0.1), rgba(34, 63, 254, 0.15));
    z-index: 1;
}

.final-cta > * {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(43, 77, 156, 0.3);
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #E2E8F0;
}

.urgency-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced CTA Buttons Container */
.final-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* Enhanced Primary CTA Button */
.final-cta .cta-button {
    background: linear-gradient(135deg, #2544DA, #2A4CA6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 
        0 4px 15px rgba(37, 68, 218, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 220px;
    justify-content: center;
}

.final-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.final-cta .cta-button:hover::before {
    left: 100%;
}

.final-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(37, 68, 218, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1E3A7A, #1A2040);
}

/* Enhanced Secondary Button */
.final-cta .btn-secondary {
    background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
    color: #1A1A2E;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(255, 255, 255, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 220px;
    justify-content: center;
}

.final-cta .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 68, 218, 0.1), transparent);
    transition: left 0.5s;
}

.final-cta .btn-secondary:hover::before {
    left: 100%;
}

.final-cta .btn-secondary:hover {
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
    color: #1A1A2E;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Button Icons */
.final-cta .cta-button svg,
.final-cta .btn-secondary svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background: #202950;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(74, 95, 255, 0.2);
}

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

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #6C757D;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2B4D9C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6C757D;
}

/* Social Media Styles */
.social-media {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(43, 77, 156, 0.3);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(43, 77, 156, 0.1);
    border: 1px solid rgba(43, 77, 156, 0.3);
    border-radius: 8px;
    color: #6C757D;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(43, 77, 156, 0.2);
    border-color: #2B4D9C;
    color: #2B4D9C;
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: white;
}

.social-link svg {
    flex-shrink: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .final-cta {
        padding: 5rem 0;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-cta .cta-buttons {
        gap: 1.2rem;
    }
    
    .final-cta .cta-button,
    .final-cta .btn-secondary {
        min-width: 200px;
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .final-cta {
        padding: 4rem 0;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        max-width: 320px;
        margin: 2rem auto;
    }
    
    .final-cta .cta-button,
    .final-cta .btn-secondary {
        width: 100%;
        min-width: auto;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .urgency-text {
        margin: 1.5rem auto;
        max-width: 320px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Enhanced Portfolio responsive adjustments */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .portfolio-card {
        min-height: 520px;
        border-radius: 20px;
    }
    
    .portfolio-image {
        height: 320px;
    }
    
    .portfolio-image img,
    .portfolio-placeholder {
        object-position: center top;
        min-height: 100%;
        min-width: 100%;
    }
    
    .portfolio-content {
        padding: 24px;
        gap: 14px;
    }
    
    .portfolio-content h3 {
        font-size: 20px;
    }
    
    .portfolio-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .portfolio-tags {
        gap: 8px;
    }
    
    .tag {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .final-cta .cta-buttons {
        gap: 0.8rem;
        max-width: 280px;
    }
    
    .final-cta .cta-button,
    .final-cta .btn-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .final-cta .cta-button svg,
    .final-cta .btn-secondary svg {
        width: 18px;
        height: 18px;
    }
    
    .urgency-text {
        max-width: 280px;
        padding: 0.7rem;
        font-size: 0.85rem;
        margin: 1.2rem auto;
    }
    
    /* Enhanced Portfolio mobile adjustments */
    .portfolio-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .portfolio-card {
        min-height: 480px;
        border-radius: 16px;
    }
    
    .portfolio-image {
        height: 280px;
    }
    
    .portfolio-image img,
    .portfolio-placeholder {
        object-position: center top;
        min-height: 100%;
        min-width: 100%;
    }
    
    .portfolio-content {
        padding: 20px;
        gap: 12px;
    }
    
    .portfolio-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .portfolio-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .portfolio-meta {
        font-size: 12px;
        margin-bottom: 16px;
        padding: 10px 0;
    }
    
    .portfolio-year {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .portfolio-tags {
        gap: 6px;
    }
    
    .tag {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    /* Social media responsive */
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 10%;
    animation-delay: 4s;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

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

/* Focus States for Accessibility */
.cta-button:focus,
.btn-secondary:focus,
.nav-links a:focus {
    outline: 2px solid #2B4D9C;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .floating-element,
    header,
    .final-cta,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}