/* ============================================
   DNA OUTSOURCING HOMEPAGE STYLES
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --dna-primary: #0E9C7E;
    --dna-primary-dark: #0A7A62;
    --dna-primary-light: #D4EDE6;
    --dna-primary-lighter: #E8F5F1;
    --dna-secondary: #1A1A2E;
    --dna-secondary-light: #2D2D44;
    --dna-navy: #001737;
    --dna-accent: #36BBA0;
    --dna-white: #FFFFFF;
    --dna-gray-100: #F8F9FA;
    --dna-gray-200: #E5E7EB;
    --dna-gray-300: #D1D5DB;
    --dna-gray-400: #9CA3AF;
    --dna-gray-500: #6B7280;
    --dna-gray-600: #4B5563;
    --dna-gray-700: #374151;
    --dna-font-primary: 'Plus Jakarta Sans', sans-serif;
    --dna-font-heading: 'Poppins', sans-serif;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--dna-font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dna-gray-600);
    background-color: var(--dna-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--dna-font-heading);
    color: var(--dna-secondary);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--dna-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dna-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-container {
    max-width: calc(100% - 40px);
    margin: 0 auto 20px;
    border-radius: 30px;
    overflow: hidden;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.dna-navbar {
    position: fixed;
    top: 15px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--dna-navy);
    border-radius: 50px;
    padding: 8px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.dna-navbar.scrolled {
    top: 10px;
    background: var(--dna-navy);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   UTILITY BAR (Below Navbar)
   ============================================ */
.top-utility-bar {
    position: fixed;
    top: 85px;
    right: 40px;
    z-index: 999;
    background: linear-gradient(90deg, var(--dna-primary) 0%, #0A8A6E 100%);
    padding: 10px 25px;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s ease;
}

.top-utility-bar.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.utility-content {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
}

.utility-link {
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.utility-link:hover {
    color: white;
    opacity: 0.85;
}

.utility-link i {
    font-size: 12px;
}

.navbar-brand img {
    height: 50px;
}

.dna-navbar .nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 18px !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dna-navbar .nav-link:hover {
    color: var(--dna-primary);
}

.dna-navbar .nav-link.active {
    color: var(--dna-primary);
    font-weight: 600;
}

/* Dropdown toggle with no link - no pointer cursor */
.dna-navbar .nav-link.dropdown-toggle[href="#"] {
    cursor: default;
}

.dna-navbar .dropdown-toggle::after {
    margin-left: 6px;
}

/* Dropdown on hover - desktop only */
@media (min-width: 992px) {
    .dna-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.2s ease;
    }
}

/* Ensure Bootstrap click-based dropdown always works */
.dna-navbar .dropdown-menu.show {
    display: block !important;
}

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

.dna-navbar .dropdown-menu {
    background: var(--dna-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 0;
}

.dna-navbar .dropdown-item {
    color: white;
    padding: 10px 20px;
    font-size: 14px;
}

.dna-navbar .dropdown-item:hover {
    background: rgba(14, 156, 126, 0.2);
    color: var(--dna-primary);
}

.navbar-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--dna-primary);
}

.navbar-buttons {
    gap: 10px;
}

.btn-connect {
    background: var(--dna-primary);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-connect:hover {
    background: var(--dna-primary-dark);
    color: white;
}

.btn-login {
    background: var(--dna-secondary);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login:hover {
    background: var(--dna-secondary-light);
    color: white;
}

.btn-indicator {
    width: 8px;
    height: 8px;
    background: #4F7DF3;
    border-radius: 50%;
    display: inline-block;
}

.dna-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.dna-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Legacy styles for compatibility */
.dna-navbar .btn-contact {
    background: var(--dna-primary);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
}

.dna-navbar .btn-contact:hover {
    background: var(--dna-primary-dark);
    color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dna-navy) 0%, #0d4a47 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 180px 0 150px;
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    color: var(--dna-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 500;
    color: var(--dna-white);
    margin-bottom: 15px;
}

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 15px;
    margin-right: 15px;
    margin-bottom: 10px;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--dna-primary) 0%, var(--dna-navy) 100%);
    border: none;
    color: white;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 156, 126, 0.3);
    color: white;
}

/* ============================================
   LOGO CAROUSEL
   ============================================ */
.logo-carousel-section {
    background: var(--dna-white);
    padding: 40px 0;
}

.logo-carousel-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dna-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.logo-marquee-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-marquee-container::before,
.logo-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.logo-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.logo-marquee-track {
    display: flex;
    width: max-content;
    animation: logo-scroll 40s linear infinite;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 25px;
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   END-TO-END PAYROLL SECTION
   ============================================ */
.payroll-section {
    background: var(--dna-gray-100);
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 19px;
    text-align: center;
    color: var(--dna-gray-600);
    max-width: 700px;
    margin: 0 auto 50px;
}

.feature-card {
    background: var(--dna-white);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #252525;
}

/* ============================================
   COUNTRIES GLOBE SECTION
   ============================================ */
.countries-section {
    background: var(--dna-navy);
    padding: 120px 0 100px;
    overflow: visible;
    position: relative;
}

.countries-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 156, 126, 0.15) 0%, rgba(14, 156, 126, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.countries-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--dna-white);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.countries-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 15px;
}

.globe-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    overflow: visible;
}

.globe-ring {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(14, 156, 126, 0.15);
    animation: globe-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.globe-ring-outer {
    width: 400px;
    height: 400px;
    border-color: rgba(14, 156, 126, 0.08);
    animation-delay: 1s;
}

@keyframes globe-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.5; }
}

#globe-canvas {
    display: block;
    width: 340px;
    height: 340px;
    cursor: grab;
    position: relative;
    z-index: 2;
}

.globe-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.globe-label i {
    font-size: 10px;
    animation: globe-hint 2s ease-in-out infinite;
}

@keyframes globe-hint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* Countries 3-Column Layout */
.countries-layout {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.region-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.globe-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.region-group {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 20px;
    transition: all 0.4s ease;
}

.region-group:hover {
    background: rgba(14, 156, 126, 0.06);
    border-color: rgba(14, 156, 126, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.region-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 156, 126, 0.15);
    border-radius: 8px;
    color: var(--dna-primary);
    font-size: 14px;
}

.region-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dna-white);
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dna-primary);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(14, 156, 126, 0.6);
}

.location-tag:hover {
    background: rgba(14, 156, 126, 0.15);
    border-color: rgba(14, 156, 126, 0.3);
    color: var(--dna-white);
    transform: translateY(-2px);
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 100%);
    padding: 80px 0;
}

.welcome-image {
    background: url('https://dnaoutrebuild.theonlineagency.website/wp-content/uploads/2026/02/ext-2.webp') center/cover no-repeat;
    min-height: 600px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--dna-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dna-white);
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.play-button:hover {
    transform: scale(1.1);
    color: var(--dna-white);
}

.welcome-content {
    padding: 50px 60px;
}

.welcome-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-family: var(--dna-font-heading);
    font-size: 16px;
    color: #333;
}

.feature-list li i {
    color: var(--dna-accent);
    margin-right: 15px;
    font-size: 20px;
}

/* ============================================
   WHAT MAKES US DIFFERENT
   ============================================ */
.different-section {
    padding: 100px 0;
}

.section-badge {
    font-size: 18px;
    font-weight: 600;
    color: var(--dna-primary);
    text-align: center;
    margin-bottom: 10px;
}

.different-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.numbered-card {
    background: linear-gradient(180deg, #E8F5F1 0%, #D4EDE6 100%);
    border-radius: 30px;
    padding: 30px 25px;
    min-height: 380px;
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}

.numbered-card.gray {
    background: #F2F2F2;
}

.card-number {
    font-size: 80px;
    font-weight: 600;
    color: var(--dna-primary);
    line-height: 1;
    border-right: 2px solid var(--dna-primary);
    padding-right: 20px;
    margin-right: 20px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.numbered-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.numbered-card p {
    font-size: 14px;
    color: #666;
}

.btn-outline-primary {
    color: var(--dna-primary);
    border: 1px solid var(--dna-primary);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    background: transparent;
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d4a47 100%);
    border-radius: 50px;
    padding: 40px 40px;
    margin: 0 20px;
    max-width: calc(100% - 40px);
    width: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 156, 126, 0.15), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 40%, rgba(14, 156, 126, 0.5) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stats-section:hover {
    transform: none;
    box-shadow: 
        0 0 30px rgba(14, 156, 126, 0.3),
        0 0 60px rgba(14, 156, 126, 0.15),
        inset 0 0 60px rgba(14, 156, 126, 0.05);
}

.stats-section:hover::before {
    left: 100%;
}

.stats-section:hover::after {
    opacity: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(14, 156, 126, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.stats-section:hover .stat-item::before {
    width: 200px;
    height: 200px;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--dna-white);
    margin-bottom: 10px;
    position: relative;
    transition: all 0.4s ease;
    text-shadow: 0 0 0 transparent;
}

.stats-section:hover .stat-number {
    text-shadow: 
        0 0 10px rgba(14, 156, 126, 0.5),
        0 0 20px rgba(14, 156, 126, 0.3),
        0 0 40px rgba(14, 156, 126, 0.2);
}

.stat-item:hover .stat-number {
    color: var(--dna-primary);
    text-shadow: 
        0 0 15px rgba(14, 156, 126, 0.8),
        0 0 30px rgba(14, 156, 126, 0.5),
        0 0 45px rgba(14, 156, 126, 0.3);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--dna-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-label {
    color: rgba(14, 156, 126, 0.9);
    letter-spacing: 2px;
}

/* ============================================
   WHY OUTSOURCE SECTION
   ============================================ */
.why-outsource-section {
    background: var(--dna-white);
    padding: 100px 0;
}

.why-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--dna-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.why-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
}

.why-outsource-section .row {
    display: flex;
    flex-wrap: wrap;
}

.why-outsource-section .row > [class*="col-"] {
    display: flex;
}

.benefit-card {
    background: linear-gradient(180deg, #F8F9FA 0%, #EEF2F6 100%);
    border: 1px solid #E5E9ED;
    border-radius: 30px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.benefit-card.highlight {
    background: linear-gradient(180deg, #E8F5F1 0%, #D4EDE6 100%);
    border-color: var(--dna-primary);
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dna-gray-600);
}

.benefit-list li i {
    color: var(--dna-primary);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 14px;
}

.benefit-list li strong {
    color: var(--dna-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
    border: 1px solid rgba(14, 156, 126, 0.2);
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px -10px rgba(14, 156, 126, 0.15);
    margin: 60px auto;
    max-width: 1200px;
}

.cta-badge {
    display: inline-block;
    background: rgba(14, 156, 126, 0.1);
    color: var(--dna-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 16px;
    color: var(--dna-gray-500);
    margin-bottom: 20px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cta-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dna-gray-600);
}

.cta-list li i {
    color: var(--dna-primary);
    margin-right: 12px;
    font-size: 18px;
}

.form-card {
    background: var(--dna-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

.form-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-control {
    background: #F8FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--dna-primary);
    background: var(--dna-white);
    box-shadow: 0 0 0 4px rgba(14, 156, 126, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dna-gray-600);
    margin-bottom: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--dna-primary) 0%, #0A8A6E 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-weight: 600;
    width: 100%;
    box-shadow: 0 8px 24px -4px rgba(14, 156, 126, 0.4);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px rgba(14, 156, 126, 0.5);
    color: white;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    background: var(--dna-navy);
    padding: 100px 0;
}

.blog-badge {
    display: inline-block;
    background: var(--dna-white);
    color: var(--dna-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--dna-white);
    text-align: center;
    margin-bottom: 50px;
}

.blog-title strong {
    font-weight: 700;
}

.blog-card {
    background: var(--dna-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px;
}

.blog-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card a {
    color: var(--dna-primary);
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.reviews-badge {
    display: inline-block;
    background: var(--dna-primary-lighter);
    color: var(--dna-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.reviews-title {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.review-card {
    background: #F3F3F3;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review-card .google-icon {
    width: 40px;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    color: #445BFB;
    font-weight: 700;
    margin-bottom: 5px;
}

.review-position {
    font-size: 14px;
    color: #292929;
}

.review-image-col {
    background: url('https://dnaoutrebuild.theonlineagency.website/wp-content/uploads/2026/02/ext-2.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    border-radius: 25px;
    min-height: 600px;
    overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--dna-navy) 0%, #0A1628 100%);
    color: #A8B5C4;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 50px;
}

.footer h5 {
    color: var(--dna-primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    color: #A8B5C4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--dna-primary);
}

.footer-links li i {
    color: var(--dna-primary);
    width: 16px;
}

.footer-brand {
    text-align: right;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--dna-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: #0b7d65;
    transform: translateY(-2px);
}

.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0;
}

.footer-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dna-white);
    margin-bottom: 20px;
}

.footer-subscribe {
    display: flex;
    gap: 10px;
    max-width: 350px;
}

.footer-subscribe .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 12px 16px;
    font-size: 14px;
}

.footer-subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--dna-primary);
    box-shadow: none;
    outline: none;
}

.btn-subscribe {
    background: var(--dna-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #0b7d65;
    color: white;
}

.city-clocks {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.city-clock {
    text-align: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(14, 156, 126, 0.9) 0%, rgba(14, 156, 126, 0.7) 100%);
    border: 1px solid rgba(14, 156, 126, 0.3);
    border-radius: 10px;
    min-width: 100px;
}

.city-clock .city-name {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.city-clock .city-time {
    font-size: 26px;
    font-weight: 400;
    color: var(--dna-white);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.city-clock .city-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: #6B7A8A;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--dna-primary);
}

.footer-copyright {
    color: #6B7A8A;
    font-size: 13px;
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet/Mobile Navbar - Bootstrap navbar-expand-lg collapses at 992px */
@media (max-width: 991px) {
    .dna-navbar .navbar-collapse {
        background: var(--dna-navy);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .dna-navbar .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 8px;
        margin: 10px 0;
        padding: 10px 0;
        text-align: center;
    }
    
    .dna-navbar .dropdown-item {
        padding: 10px 15px;
    }
    
    .navbar-social-icons {
        justify-content: center;
        margin: 20px 0;
        padding-right: 0;
        border-right: none;
    }
    
    .navbar-buttons {
        justify-content: center;
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar-buttons .btn-connect,
    .navbar-buttons .btn-login {
        width: 100%;
        justify-content: center;
    }
    
    .dna-navbar .nav-link {
        text-align: center;
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dna-navbar .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .dna-navbar .navbar-toggler {
        border: none;
        padding: 8px;
    }
    
    .dna-navbar .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 50px;
    }
    
    .section-title, .different-title, .countries-title, .welcome-title, .why-title, .blog-title, .reviews-title {
        font-size: 38px;
    }
    
    .card-number {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .section-container {
        max-width: calc(100% - 20px);
        margin-bottom: 10px;
    }
    
    /* Hero section full width on mobile */
    .hero-section.section-container {
        max-width: 100%;
        margin: 0 0 10px 0;
        border-radius: 0;
    }
    
    .hero-content {
        padding: 120px 20px 80px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        text-align: center;
    }
    
    .dna-navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 8px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title, .different-title, .countries-title, .welcome-title, .why-title, .blog-title, .reviews-title {
        font-size: 28px;
    }
    
    .welcome-content {
        padding: 40px 20px;
    }
    
    .welcome-image {
        min-height: 400px;
    }
    
    .numbered-card {
        min-height: auto;
        flex-direction: column;
    }
    
    .card-number {
        font-size: 40px;
        border-right: none;
        border-bottom: 2px solid var(--dna-primary);
        padding-right: 0;
        padding-bottom: 15px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .stats-section {
        padding: 30px 20px;
        margin: 0;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }

    #globe-canvas {
        width: 280px;
        height: 280px;
    }

    .globe-ring {
        width: 310px;
        height: 310px;
    }

    .globe-ring-outer {
        width: 350px;
        height: 350px;
    }

    .countries-section::before {
        width: 350px;
        height: 350px;
    }

    .countries-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .globe-center {
        order: -1;
    }

    .region-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .region-group {
        padding: 18px 14px;
    }

    .location-tag {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .benefit-card {
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .city-clocks {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }
    
    .city-clock {
        min-width: 70px;
        padding: 10px 12px;
        flex: 1;
        max-width: 85px;
    }
    
    .city-clock .city-time {
        font-size: 18px;
    }
    
    .city-clock .city-name {
        font-size: 8px;
    }
    
    /* Footer Mobile */
    .footer {
        border-radius: 20px 20px 0 0;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-brand {
        text-align: center;
        margin-top: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-middle {
        padding: 30px 0;
    }
    
    .footer-cta-text {
        font-size: 16px;
        text-align: center;
    }
    
    .footer-subscribe {
        flex-direction: column;
        max-width: 100%;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    /* Utility Bar Mobile */
    .top-utility-bar {
        top: 68px;
        right: 35px;
        padding: 8px 15px;
        border-radius: 0 0 15px 15px;
    }
    
    .utility-content {
        gap: 15px;
    }
    
    .utility-link {
        font-size: 11px;
    }
    
    /* Navbar Mobile - Small screens */
    .dna-navbar {
        top: 10px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}
