* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(0, 123, 255, 0.1);
    border-top-color: #007BFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
    color: #007BFF;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar:hover {
    background-color: rgba(10, 10, 10, 0.98);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #007BFF;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.3));
}

.logo-icon {
    font-size: 30px;
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.5));
}

.logo-text {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007BFF, #0056D6);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 123, 255, 0.2);
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(0, 123, 255, 0.1);
    border-left-color: #007BFF;
    padding-left: 25px;
    color: #007BFF;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.has-dropdown .dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-icon,
.nav-item.has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-item:hover .nav-link {
    color: #007BFF;
}

.dropdown-icon {
    font-size: 9px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    color: #007BFF;
    transform: rotate(180deg);
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-outline {
    padding: 11px 26px;
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #007BFF;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: #ffffff;
    border-color: #007BFF;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}

.btn-solid {
    padding: 11px 26px;
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0056D6 0%, #003DA5 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-solid:hover::before {
    opacity: 1;
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
}

.btn-solid span,
.btn-outline span {
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #007BFF, #ffffff);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background: linear-gradient(90deg, #ffffff, #007BFF);
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.70)),
        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=2015&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 123, 255, 0.6),
        0 0 30px rgba(0, 123, 255, 0.4),
        2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-subtitle {
    font-size: 32px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 2px;
    font-style: italic;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-headline {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 35px;
    line-height: 1.15;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.9);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in animation class */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: #007BFF;
    color: #ffffff;
}

::-moz-selection {
    background-color: #007BFF;
    color: #ffffff;
}

/* Image Loading Animation */
img {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

img.loaded {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth Page Transitions */
.page-transition {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3395FF 0%, #007BFF 100%);
}

/* Custom cursor for clickable elements */
button,
a,
input[type="submit"],
.nav-item,
.badge {
    cursor: pointer;
}

/* Focus visible for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #007BFF;
    outline-offset: 3px;
}

/* Smooth transitions for all elements */
* {
    transition-property: transform, opacity, box-shadow;
}

/* Lead Form */
.lead-form {
    display: flex;
    gap: 16px;
    max-width: 1250px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.form-group {
    flex: 1;
    min-width: 260px;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #007BFF;
    transition: all 0.3s ease;
    z-index: 2;
}

.form-group.focused .input-icon {
    transform: translateY(-50%) scale(1.1);
}

.form-group input {
    width: 100%;
    padding: 20px 20px 20px 55px;
    background-color: rgba(255, 255, 255, 0.98);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder {
    color: #888888;
    font-weight: 400;
}

.form-group input:focus {
    outline: none;
    border-color: #007BFF;
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.form-group input:hover {
    border-color: rgba(0, 123, 255, 0.3);
}

.btn-submit {
    padding: 20px 55px;
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 220px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3395FF 0%, #007BFF 100%);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 123, 255, 0.6);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit span {
    position: relative;
    z-index: 1;
}

/* Partner Badges */
.partner-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 100px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.badge {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    border-color: #007BFF;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
}

/* Google Partner Badge */
.badge-google {
    display: flex;
    gap: 12px;
    align-items: center;
}

.google-g {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.google-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.google-partner {
    font-size: 11px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.2;
}

.google-premier {
    font-size: 10px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Inc 5000 Badge */
.badge-inc {
    display: flex;
    gap: 15px;
    align-items: center;
}

.inc-left {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.inc-text {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.inc-5000 {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.inc-divider {
    width: 2px;
    height: 40px;
    background-color: #ffffff;
}

.inc-right {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.inc-years {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.inc-years-text {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

/* Microsoft Badge */
.badge-microsoft {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.ms-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ms-year {
    font-size: 11px;
    color: #ffffff;
    font-weight: bold;
}

.ms-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ms-square {
    color: #00a4ef;
    font-size: 12px;
}

.ms-text {
    font-size: 11px;
    color: #ffffff;
    font-weight: 400;
}

.ms-select {
    font-size: 10px;
    color: #ffffff;
    font-weight: bold;
    padding-top: 2px;
}

/* Amazon Badge */
.badge-amazon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.amazon-logo {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.amazon-verified {
    font-size: 10px;
    color: #999999;
    font-weight: 400;
}

/* Meta Badge */
.badge-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.meta-logo {
    font-size: 40px;
    color: #0081fb;
    line-height: 1;
}

.meta-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-top: -5px;
}

.meta-partner {
    font-size: 9px;
    color: #999999;
    font-weight: 400;
}

/* BBB Badge */
.badge-bbb {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bbb-left {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bbb-torch {
    font-size: 28px;
}

.bbb-text {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.bbb-divider {
    width: 2px;
    height: 35px;
    background-color: #ffffff;
}

.bbb-right {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.bbb-rating {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.bbb-rating-text {
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
}

/* Fixed Sidebar */
.fixed-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar-link {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    color: #ffffff;
    padding: 15px 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 180px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px 0 0 0;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sidebar-link:hover::before {
    opacity: 1;
}

.sidebar-link:hover {
    transform: translateX(-5px);
    box-shadow: -6px 0 30px rgba(204, 0, 0, 0.6);
}

.sidebar-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.sidebar-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-icon svg {
    fill: currentColor;
}

.sidebar-arrow {
    font-size: 20px;
    font-weight: bold;
    transform: rotate(90deg);
}

.sidebar-checkbox {
    font-size: 16px;
}

.sidebar-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1faa52 100%);
    color: #ffffff;
    padding: 20px 8px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0 8px;
}

.sidebar-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2eea6f 0%, #25D366 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sidebar-whatsapp:hover::before {
    opacity: 1;
}

.sidebar-whatsapp:hover {
    box-shadow: -6px 0 30px rgba(37, 211, 102, 0.6);
    transform: translateX(-5px);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    fill: currentColor;
}

/* Results-Driven Marketing Section */
.results-section {
    background: linear-gradient(135deg, #004085 0%, #002952 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.results-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.result-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.result-item:hover::before {
    left: 100%;
}

.result-item:hover {
    transform: translateY(-10px);
    border-color: #007BFF;
    background: rgba(0, 123, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 123, 255, 0.3);
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.result-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke-width: 2.5;
}

.result-item:hover .result-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
}

.result-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.result-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

/* Our Story Section */
.story-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.story-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 123, 255, 0.2);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.story-text {
    padding: 20px;
}

.story-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007BFF 0%, #0056D6 100%);
    border-radius: 2px;
}

.story-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.story-description strong {
    color: #007BFF;
    font-weight: 700;
}

/* Featured In Section */
.featured-section {
    background: linear-gradient(135deg, #004085 0%, #002952 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.featured-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 60px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-logo {
    opacity: 0.7;
    transition: all 0.4s ease;
    filter: grayscale(0%);
}

.featured-logo:hover {
    opacity: 1;
    transform: scale(1.15);
}

.logo-forbes {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    font-style: italic;
}

.logo-bloomberg {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -1px;
}

.logo-inc {
    font-family: 'Georgia', serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
}

.logo-npr {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 900;
    display: flex;
    gap: 4px;
}

.npr-n {
    color: #e51a23;
}

.npr-p {
    color: #0066cc;
}

.npr-r {
    color: #f5a623;
}

.logo-businessweek {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #cc0000;
    background-color: #cc0000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #004085 0%, #002952 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 123, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-title {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonials-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    border-color: #CC0000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.4);
}

.testimonial-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-logo {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
    z-index: 2;
}

.testimonial-logo svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.testimonial-content {
    padding: 50px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.client-company {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.testimonial-heading {
    font-size: 20px;
    font-weight: 800;
    color: #CC0000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
    flex: 1;
}

.testimonials-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-button {
    padding: 18px 50px;
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.4);
    text-transform: capitalize;
    text-decoration: none;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(204, 0, 0, 0.6);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Remarkable Results Portfolio Section */
.results-portfolio-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.portfolio-title {
    font-size: 52px;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.portfolio-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007BFF 0%, #0056D6 100%);
    border-radius: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
}

.portfolio-name {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    padding: 30px 20px 20px;
}

.portfolio-preview {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.portfolio-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-preview img {
    transform: scale(1.1);
}

.portfolio-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 30px 20px;
}

.stat-box {
    text-align: center;
    padding: 20px 10px;
}

.stat-box:first-child {
    border-right: 2px solid #e0e0e0;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
    text-transform: capitalize;
}

/* Team Section */
.team-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-label {
    display: inline-block;
    padding: 8px 20px;
    background-color: #CC0000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 25px;
}

.team-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.team-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 35px;
}

.team-button {
    padding: 18px 45px;
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.4);
}

.team-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.team-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(204, 0, 0, 0.6);
}

.team-button:hover svg {
    transform: translateX(5px);
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.team-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 123, 255, 0.2);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 123, 255, 0.2);
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.stats-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.stat-item:hover {
    border-color: #007BFF;
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #007BFF;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.stat-label {
    font-size: 16px;
    color: #cccccc;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services Section */
.services-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.services-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 20px;
    color: #cccccc;
    font-weight: 400;
}

.services-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #2a2a2a;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #007BFF;
    box-shadow: 0 15px 50px rgba(0, 123, 255, 0.4);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.2) rotate(5deg);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: #999999;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #007BFF;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.4);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #007BFF;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background-color: #0056D6;
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 16px;
    color: #cccccc;
}

.popup-form {
    margin-bottom: 30px;
}

.popup-form-group {
    margin-bottom: 20px;
}

.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.popup-form-group input:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    background-color: rgba(255, 255, 255, 0.08);
}

.popup-form-group input::placeholder,
.popup-form-group textarea::placeholder {
    color: #666666;
}

.popup-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5);
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.popup-feature {
    color: #cccccc;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo-icon {
        font-size: 26px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        max-height: 600px;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-item::after {
        display: none;
    }
    
    /* Mobile Dropdown Menu */
    .nav-item.has-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-item.has-dropdown > .nav-link {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        padding-left: 20px;
        box-shadow: none;
        border-left: 2px solid #007BFF;
        background: rgba(0, 123, 255, 0.05);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0 10px 20px;
    }
    
    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .dropdown-menu li a:hover {
        padding-left: 20px;
    }
    
    .nav-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 12px;
        background-color: rgba(10, 10, 10, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 999;
    }
    
    .nav-buttons.active {
        display: flex;
    }
    
    .btn-outline,
    .btn-solid {
        width: 100%;
        padding: 14px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .hero-headline {
        font-size: 42px;
        letter-spacing: -0.5px;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.9),
            0 4px 16px rgba(0, 0, 0, 0.7),
            2px 2px 4px rgba(0, 0, 0, 1);
    }
    
    .hero-title {
        font-size: 38px;
        letter-spacing: 2px;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.9),
            0 4px 16px rgba(0, 123, 255, 0.5),
            2px 2px 4px rgba(0, 0, 0, 1);
    }
    
    .hero-subtitle {
        font-size: 22px;
        letter-spacing: 1.5px;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.9),
            0 4px 12px rgba(0, 0, 0, 0.7),
            1px 1px 3px rgba(0, 0, 0, 1);
    }
    
    .hero-description {
        font-size: 18px;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.9),
            0 4px 12px rgba(0, 0, 0, 0.7),
            1px 1px 3px rgba(0, 0, 0, 1);
    }
    
    .lead-form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .partner-badges {
        gap: 15px;
    }
    
    .badge {
        min-width: 120px;
        padding: 15px 20px;
    }
    
    .results-title {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .result-item {
        padding: 35px 25px;
    }
    
    .result-icon {
        width: 70px;
        height: 70px;
    }
    
    .result-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .result-name {
        font-size: 20px;
    }
    
    .result-desc {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .services-slider {
        gap: 20px;
    }
    
    .service-card {
        flex: 0 1 calc(50% - 15px);
        min-width: 250px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .popup-content {
        padding: 40px 30px;
    }
    
    .popup-title {
        font-size: 28px;
    }
    
    .story-section {
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .story-title {
        font-size: 36px;
    }
    
    .story-description {
        font-size: 16px;
    }
    
    .featured-section {
        padding: 60px 0;
    }
    
    .featured-logos {
        gap: 50px;
        padding: 30px 20px;
    }
    
    .logo-forbes {
        font-size: 30px;
    }
    
    .logo-bloomberg {
        font-size: 24px;
    }
    
    .logo-inc {
        font-size: 40px;
    }
    
    .logo-npr {
        font-size: 28px;
    }
    
    .logo-businessweek {
        font-size: 20px;
    }
    
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonials-title {
        font-size: 40px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-heading {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-content {
        padding: 45px 25px 25px;
    }
    
    .results-portfolio-section {
        padding: 70px 0;
    }
    
    .portfolio-title {
        font-size: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .portfolio-name {
        font-size: 24px;
    }
    
    .stat-value {
        font-size: 40px;
    }
    
    .team-section {
        padding: 70px 0;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-title {
        font-size: 36px;
    }
    
    .team-description {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-headline {
        font-size: 34px;
        letter-spacing: -0.5px;
        margin-bottom: 25px;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.95),
            0 4px 16px rgba(0, 0, 0, 0.8),
            2px 2px 4px rgba(0, 0, 0, 1);
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 1.5px;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.95),
            0 4px 16px rgba(0, 123, 255, 0.5),
            2px 2px 4px rgba(0, 0, 0, 1);
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.95),
            0 4px 12px rgba(0, 0, 0, 0.8),
            1px 1px 3px rgba(0, 0, 0, 1);
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 40px;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.95),
            0 4px 12px rgba(0, 0, 0, 0.8),
            1px 1px 3px rgba(0, 0, 0, 1);
    }
    
    .lead-form {
        margin-bottom: 60px;
    }
    
    .partner-badges {
        margin-top: 60px;
        gap: 15px;
    }
    
    .badge {
        padding: 16px 20px;
    }
    
    .results-section {
        padding: 60px 0;
    }
    
    .results-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .result-item {
        padding: 30px 20px;
    }
    
    .result-icon {
        width: 60px;
        height: 60px;
    }
    
    .result-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .result-name {
        font-size: 18px;
    }
    
    .result-desc {
        font-size: 13px;
    }
    
    .fixed-sidebar {
        bottom: auto;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        flex-direction: column;
        width: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    }
    
    .sidebar-link {
        padding: 12px 6px;
        min-height: 150px;
        border-radius: 8px 0 0 0;
        gap: 6px;
    }
    
    .sidebar-text {
        font-size: 9px;
        letter-spacing: 0.8px;
    }
    
    .sidebar-arrow {
        font-size: 18px;
    }
    
    .sidebar-checkbox svg {
        width: 14px;
        height: 14px;
    }
    
    .sidebar-link:hover {
        transform: translateX(-5px);
    }
    
    .sidebar-whatsapp {
        padding: 14px 10px;
        min-height: 60px;
        border-radius: 0 0 0 8px;
    }
    
    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }
    
    .sidebar-whatsapp:hover {
        transform: translateX(-5px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .services-slider {
        gap: 20px;
    }
    
    .service-card {
        flex: 0 1 100%;
        min-width: 100%;
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .popup-content {
        padding: 35px 25px;
        width: 95%;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .story-section {
        padding: 50px 0;
    }
    
    .story-content {
        gap: 30px;
    }
    
    .story-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .story-title::after {
        width: 60px;
        height: 3px;
    }
    
    .story-description {
        font-size: 15px;
    }
    
    .story-text {
        padding: 10px;
    }
    
    .featured-section {
        padding: 50px 0;
    }
    
    .featured-title {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .featured-logos {
        gap: 35px;
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .logo-forbes {
        font-size: 26px;
    }
    
    .logo-bloomberg {
        font-size: 20px;
    }
    
    .logo-inc {
        font-size: 36px;
    }
    
    .logo-npr {
        font-size: 24px;
    }
    
    .logo-businessweek {
        font-size: 18px;
        padding: 6px 12px;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-title {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .testimonial-filters {
        padding: 0 20px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .testimonial-heading {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-content {
        padding: 45px 25px 25px;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    .results-portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-title {
        font-size: 32px;
        padding: 0 20px;
        margin-bottom: 50px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .portfolio-name {
        font-size: 22px;
        padding: 25px 15px 15px;
    }
    
    .portfolio-preview {
        height: 220px;
    }
    
    .portfolio-stats {
        padding: 25px 15px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .team-section {
        padding: 50px 0;
    }
    
    .team-content {
        padding: 0 20px;
        gap: 40px;
    }
    
    .team-title {
        font-size: 32px;
    }
    
    .team-description {
        font-size: 16px;
    }
    
    .team-button {
        padding: 16px 35px;
        font-size: 15px;
    }
}

/* Footer CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, #004085 0%, #002952 100%);
    padding: 80px 0;
    position: relative;
}

.footer-cta-content {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.footer-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.footer-form-title {
    font-size: 36px;
    font-weight: 900;
    color: #CC0000;
    margin-bottom: 30px;
    text-align: left;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-form-group {
    position: relative;
}

.footer-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #CC0000;
    z-index: 1;
}

.footer-form-group input,
.footer-form-group select,
.footer-form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.footer-form-group textarea {
    padding: 15px;
    resize: vertical;
    min-height: 100px;
}

.footer-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23CC0000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.footer-form-group input:focus,
.footer-form-group select:focus,
.footer-form-group textarea:focus {
    outline: none;
    border-color: #CC0000;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.footer-form-counter {
    text-align: right;
    font-size: 13px;
    color: #CC0000;
    margin-top: -10px;
}

.footer-submit-btn {
    background: linear-gradient(90deg, #CC0000 0%, #990000 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.4);
}

.footer-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(204, 0, 0, 0.6);
}

.footer-submit-btn:hover svg {
    transform: translateX(5px);
}

.footer-cta-info {
    color: #ffffff;
    padding: 20px 0;
}

.footer-cta-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.footer-cta-phone {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 40px;
}

.phone-link {
    color: #CC0000;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #FF3333;
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.footer-cta-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 50px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-feature svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.footer-media-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 35px;
    background: #ffffff;
    border-radius: 8px;
    flex-wrap: wrap;
}

.footer-logo-forbes {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.footer-logo-bloomberg {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-logo-inc {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.footer-logo-npr {
    display: inline-flex;
    gap: 2px;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.npr-n {
    color: #CC0000;
}

.npr-p {
    color: #1a1a1a;
}

.npr-r {
    color: #007BFF;
}

.footer-logo-businessweek {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    background: #CC0000;
    padding: 6px 12px;
    border-radius: 3px;
}

/* Main Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #007BFF;
    transform: translateX(5px);
}

.footer-certifications {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 40px;
    max-width: 1400px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.cert-badge:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: #007BFF;
    transform: translateY(-3px);
}

.inc-badge {
    font-size: 14px;
    font-weight: 900;
}

.inc-years {
    font-size: 16px;
    font-weight: 900;
    color: #007BFF;
}

.google-badge {
    font-size: 24px;
    font-weight: 900;
    color: #007BFF;
}

.partner-text {
    font-size: 10px;
}

.microsoft-badge {
    font-size: 10px;
}

.meta-logo {
    font-size: 24px;
    color: #007BFF;
}

.meta-badge {
    font-size: 10px;
}

.hubspot-badge {
    font-size: 12px;
    font-weight: 900;
}

.bbb-badge {
    font-size: 11px;
}

.amazon-badge {
    font-size: 10px;
}

.klaviyo-badge {
    font-size: 10px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-brand-icon {
    font-size: 28px;
    color: #CC0000;
}

.footer-brand-text {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #007BFF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: #007BFF;
    border-color: #007BFF;
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 14px;
    color: #999999;
}

.footer-copyright a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #3395FF;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-title {
    font-size: 52px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 20px;
    color: #666666;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #007BFF;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007BFF 0%, #0056D6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-icon svg {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

.contact-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    color: #007BFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #0056D6;
    transform: translateX(5px);
}

.contact-map {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.map-container {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
}

.social-connect {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-btn svg {
    width: 20px;
    height: 20px;
}

.social-link-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.social-link-btn.facebook:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-link-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-link-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.social-link-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.social-link-btn.linkedin:hover {
    background: #006399;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.social-link-btn.youtube {
    background: #ff0000;
    color: #ffffff;
}

.social-link-btn.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Responsive Contact Section */
@media (max-width: 1200px) {
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-title {
        font-size: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .contact-card-title {
        font-size: 20px;
    }
    
    .contact-card-text {
        font-size: 15px;
    }
    
    .contact-map {
        padding: 25px;
    }
    
    .map-title {
        font-size: 24px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .social-link-btn {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* Responsive Footer Styles */
@media (max-width: 1200px) {
    .footer-cta-content {
        grid-template-columns: 420px 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .footer-cta-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .footer-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-cta-title {
        font-size: 34px;
    }
    
    .footer-cta-phone {
        font-size: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-certifications {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 60px 0;
    }
    
    .footer-form-title {
        font-size: 28px;
    }
    
    .footer-cta-title {
        font-size: 28px;
    }
    
    .footer-cta-phone {
        font-size: 18px;
    }
    
    .footer-feature {
        font-size: 16px;
    }
    
    .footer-media-logos {
        gap: 20px;
        padding: 20px 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-footer {
        padding: 60px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-copyright {
        order: 3;
    }
}

@media (max-width: 480px) {
    .footer-form-card {
        padding: 30px 25px;
    }
    
    .footer-cta-title {
        font-size: 24px;
    }
    
    .footer-media-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cert-badge {
        padding: 10px 15px;
        font-size: 10px;
    }
}

/* ==================== DISCOVER PAGE STYLES ==================== */

/* Section Header (used across discover page) */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Discover page body override */
body.discover-page {
    background-color: #ffffff;
}

body:has(.discover-hero) {
    background-color: #ffffff;
}

/* Discover Hero Section */
.discover-hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.discover-hero::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 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat bottom;
    background-size: cover;
}

.discover-hero-content {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.discover-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.discover-hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.discover-hero-divider {
    width: 100px;
    height: 4px;
    background: #ffffff;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.4s both;
}

/* Discover Section */
.discover-section {
    padding: 100px 0;
    background: #ffffff;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.discover-section:not(.animate-in) {
    opacity: 0;
    transform: translateY(30px);
}

.discover-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.discover-bg-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discover-title {
    font-size: 42px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 30px;
}

.discover-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.discover-image-wrapper {
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

.discover-svg {
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mission & Vision Cards */
.discover-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.discover-mission-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.discover-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
}

.discover-mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #ffffff;
}

.discover-mission-icon svg {
    width: 40px;
    height: 40px;
}

.discover-mission-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.discover-mission-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.value-card:not(.animate-in) {
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    opacity: 1;
    transform: scale(1);
}

.why-choose-card:not(.animate-in) {
    opacity: 0;
    transform: scale(0.9);
}

.why-choose-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.why-choose-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.why-choose-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-choose-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.achievement-card {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.achievement-card:not(.animate-in) {
    opacity: 0;
    transform: scale(0.8);
}

.achievement-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.4);
}

.achievement-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

.achievement-label {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.95;
}

/* Discover CTA Section */
.discover-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.discover-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.discover-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.discover-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.discover-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.discover-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for Discover Page */
@media (max-width: 968px) {
    .discover-hero-title {
        font-size: 42px;
    }
    
    .discover-hero-subtitle {
        font-size: 20px;
    }
    
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .discover-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .discover-title {
        font-size: 36px;
    }
    
    .discover-cta-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .discover-hero {
        padding: 120px 0 80px;
    }
    
    .discover-hero-title {
        font-size: 32px;
    }
    
    .discover-hero-subtitle {
        font-size: 18px;
    }
    
    .discover-section {
        padding: 60px 0;
    }
    
    .discover-title {
        font-size: 28px;
    }
    
    .discover-text {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .discover-cta {
        padding: 60px 0;
    }
    
    .discover-cta-title {
        font-size: 28px;
    }
    
    .discover-cta-text {
        font-size: 16px;
    }
    
    .discover-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .discover-cta-buttons .btn-solid,
    .discover-cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

